No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
6 Posted Topics
First find out where the perl executable is, most likely /usr/bin/perl My guess is that the cgi script is calling for /usr/local/bin/perl so Open your ikonboard.cgi with Kwrite or w/e you like best. The first line.... [code]#!/usr/bin/perl[/code] replace that with the correct url and it should work!
try this... [code] $result = mysql_query("SELECT * FROM users WHERE username = \"$_The_Name_Your_Checking\""); if($myrow = mysql_fetch_assoc($result)) { echo(" Name Taken... "); } else { //Continue functions } [/code] Mysql doesn't match CaSe so if the user is trying to make the name "Dave" and there is alrdy a user in …
.tar is a linux compressed file like win's .zip. To get the most recent php dist for windows go here... [url]http://us2.php.net/get/php-4.3.7-Win32.zip/from/a/mirror/[/url] That is the binaries w/o the installer. I'm guessing your using Apache? If so do as follows to install php as an Apache module. you can find Apache at …
What i like to do with form submissions... First off, you never want to put your SQL login info directly in your script instead make a file like db.cnnt.php Inside, write something like this... [code] <?PHP // No direct call... if(ereg('db.cnnt.php', $_SERVER['SCRIPT_NAME'])) { die("Access Denied! No Direct Call!"); } // …
The End.
fEcAlMaTteR