Search found 53 matches
- Tue Feb 28, 2006 10:28 pm
- Forum: PHP - Code
- Topic: E-mail form validation
- Replies: 9
- Views: 436
- Tue Feb 28, 2006 9:30 pm
- Forum: PHP - Code
- Topic: E-mail form validation
- Replies: 9
- Views: 436
- Tue Feb 28, 2006 9:05 pm
- Forum: PHP - Code
- Topic: E-mail form validation
- Replies: 9
- Views: 436
- Tue Feb 28, 2006 8:23 pm
- Forum: PHP - Code
- Topic: timestamp
- Replies: 2
- Views: 208
- Tue Feb 28, 2006 4:28 pm
- Forum: PHP - Code
- Topic: timestamp
- Replies: 2
- Views: 208
timestamp
This script show the time of the file last modify. So every PHP I write, I have to replace file.php to something else. Is there possible way of not doing of not doing this? <br><br> <?php $last_modified = filemtime("file.php"); print("Last Modified: "); print(date("M-j-Y h:i...
- Tue Feb 28, 2006 3:14 pm
- Forum: PHP - Code
- Topic: E-mail form validation
- Replies: 9
- Views: 436
E-mail form validation
I need help on the e-mail form, can any one help me? I want the form to check if everything is inputs correct such as an valid e-mail. If the user choose General, it will send to general email. general@email.com. If the user choose Customer, it will send to Customer e-mail. customer@email.com. Is th...
- Tue Feb 28, 2006 8:54 am
- Forum: Miscellaneous
- Topic: Perl: system call not work
- Replies: 0
- Views: 894
Perl: system call not work
I have a script to call the other script.
hello.pl
test_hello.pl
How can I make this possible to work for both in UNIX & Windows?
hello.pl
Code: Select all
#!/usr/local/bin/perl
print("Hello " . $ARGV[0] . "\n\n");test_hello.pl
Code: Select all
#!/usr/local/bin/perl
$script='hello.pl';
system("$script Dave");- Mon Feb 27, 2006 12:10 pm
- Forum: Installation and Configuration
- Topic: Running PHP in IIS
- Replies: 6
- Views: 2253
- Mon Feb 27, 2006 12:01 pm
- Forum: Installation and Configuration
- Topic: Running PHP in IIS
- Replies: 6
- Views: 2253
- Mon Feb 27, 2006 11:00 am
- Forum: Installation and Configuration
- Topic: Running PHP in IIS
- Replies: 6
- Views: 2253
- Mon Feb 27, 2006 9:10 am
- Forum: Installation and Configuration
- Topic: Running PHP in IIS
- Replies: 6
- Views: 2253
Running PHP in IIS
I did the exact from this link to show how to install PHP in IIS. http://www.webthang.co.uk/tuts/tuts_server/php_iis/php_iis.asp Then I create a folder where I will work on the web. I test out the PHP, and it works for http://localhost/webportal/test.php where test.php is <?PHP phpinfo(); ?> And whe...
- Fri Feb 24, 2006 8:35 pm
- Forum: Miscellaneous
- Topic: PERL: return command
- Replies: 3
- Views: 1706
- Fri Feb 24, 2006 5:11 pm
- Forum: Miscellaneous
- Topic: PERL: return command
- Replies: 3
- Views: 1706
PERL: return command
How can I use Perl to return to another script that I call? Any help? Here is my nameconfig.pl file. #!/usr/local/bin/perl $names="a"; %name =( "a" => "andy", "b" => "ben", "c" => "cat" ); return "$name{$names}"; and her...
- Fri Feb 24, 2006 3:18 pm
- Forum: Miscellaneous
- Topic: PERL: chdir of mapnetwork
- Replies: 1
- Views: 951
PERL: chdir of mapnetwork
$server="\\\\netserver.vietboy505.com"; print("\n Current directory: " . cwd() . "\n\n"); print("Server is: " . $server . "\n\n"); chdir($server); print("\n Current directory 2: " . cwd() . "\n\n\n"); How come I can't change the ...
- Fri Feb 24, 2006 8:52 am
- Forum: Miscellaneous
- Topic: BATCH: IF ELSE STATEMENT
- Replies: 3
- Views: 3853