Everything posted by notooth
-
Need Help with Popup
Hi , Can anyone tell me how to create a popup that can pass popup blockers?
-
[Question] - How to Install Windows on Striped Volume?
Hello , Is there a way to install Windows on a striped volume to gain performance? Title Edited - Please follow new posting rules from now on. --Zxian
-
Help Me Enable GD for PHP
Hello, Can anyone guide me to enable GD for PHP? I am using PHP 4.3.9 on RH Linux ES4. Thank you.
-
Problem with Unexpected Slashes
I got a serious problem. PHP always returns and adds a \ (slash) before every " (quote) when it read from a file . Can you help?
-
Where to Download IP-Location Database?
Can anyone help?
-
Where to Download IP-Location Database?
Does anyone know where to download the most complete IP-Location Database for free? Please tell me
-
Problem with Perl
It worksssss Thanks for your help.
-
Problem with Perl
Can anyone help? When I type perl index.pl on the terminal, it prints out the output. But when I executes it via web browser, I got the 500 Internal Server Error .
-
How to Add Shortcut on Desktop?
Since nobody likes this idea, I am not going to put that feature on my page .
-
How to Add Shortcut on Desktop?
a shortcut, which links to my page, on their desktop will make them visit my page more often. This is just kind of a bookmark .
-
Problem with Perl
I have a file index.pl in cgi-bin folder, and it works fine on the terminal. But when I execute it on the web browser, I got the Internal Server Error. I checked the error_log file, and it said: Premature end of script header: index.pl. Can anyone help me solve this issue?
-
How to Get Domain Name of Referer
I figured it out. The web server get nothing for the $HTTP_REFERER if the referfer is my local server. When I use another website as the referer, it works fine. Thank you for your replies .
-
Problem with Variable in PHP
I fixed the problem by changing $a to $aa. Thanks eXPerience-XP for your help .
-
Problem with Variable in PHP
This is the weirdest thing: <? $a[0][0]=1; ?> ................. ................. <? echo "a = " . $a[0][0]; ?> ................ ................ <? echo "a = " . $a[0][0]; ?> the result is: a = 1 a = I got nothing for $a[0][0] at the bottom of the page .
-
Problem with Variable in PHP
It doesn't work either .
-
How to Get Domain Name of Referer
That doesn't work either .
-
How to Add Shortcut on Desktop?
Can anyone tell me how to add a shortcut on vivitors' desktop when they visit my page?
-
Problem with Variable in PHP
Can anyone help?
-
How to Get Domain Name of Referer
Of course, it does. I am making a web page with PHP and got problem with this.
-
How to Get Domain Name of Referer
That works on my local server, but does not work on my web server .
-
How to Get Domain Name of Referer
Can anyone help me? I got nothing for $HTTP_REFERER .
-
How to Get Domain Name of Referer
Hi , Can anyone tell me if there is a function that returns the domain name of the referer?
-
Problem with Variable in PHP
I have about 40 varibles declared in file var.php: <? $a[0][0]=1; $a[0][1]=2; ....... ....... $t[1][1]=26; ?> and below is the code from file index.php that has problem: <? require 'var.php'; ?> ......some code..... <? echo 'a = ' . $a[0][0]; ?> ......some code.... <? echo 'a = ' . $a[0][0]; ?> The problem is: I did not change any value of the variables, but some variables $a[0][0] at the bottom of index.php displayed nothing on the page . Can you help me with that?
-
How to Download File Automatically
I am wondering if there is a way that makes my server automatically download a file from another server every day. Any idea would be greatly appreciated.
-
How to Simple URL with PHP
Now I got another problem. Anytime I uploaded .htaccess to my server, it disapeared . That is weird.