![]() |
![]() |
![]() |
|||||
![]() |
![]() |
![]() |
![]() |
![]() |
|||
| Welcome
to Tech Support Forum home to more then 136,000 problems solved. Issues
have included: Spyware, Malware, Virus Issues, Windows, Microsoft,
Linux, Networking, Security, Hardware, and Gaming Getting your
problem solved is as easy as: 1. Registering for a free account 2. Asking your question 3. Receiving an answer Registered members: * See fewer ads. * And much more..
|
| Want to know how to post a question? click here | Having problems with spyware and pop-ups? First Steps |
|
|||||||
| Web Design & Programming Discussion of web design, and server-side & client-side scripting |
![]() |
|
|
LinkBack | Thread Tools |
|
|
#41 (permalink) |
|
Design Team Member
|
Re: Mysql database and php
No idea, I'm not a JS guy :)
__________________
Free Resources PC Protection - Comodo Firewall | AVG Anti-Virus | WinPatrol | Ad-Aware | Spybot S&D | SpywareBlaster |Web Design/Programming - KompoZer (Editor) | Paint.NET (Graphic) | GIMP+GIMPShop (Graphic) | FileZilla (FTP Client) | Free Hosting | |
|
|
|
| Important Information |
|
Join the #1 Tech Support Forum Today - It's Totally Free!
TechSupportForum.com is a leading support website for your computer needs. We offer free, friendly and personalized computer support. Why pay to have your computer fixed when you can do it for free. Join TechSupportforum.com Today - Click Here |
|
|
#42 (permalink) |
|
God (TSF Enthusiast)
Join Date: May 2009
Location: Jeffersonville, IN
Posts: 893
OS: Ubuntu 9.10 [Karmic Koala]
|
Re: Mysql database and php
Here ya go.
HTML Code:
function FrontPage_Form1_Validator(theForm)
{
///////////////////////////////CHANGES BEGIN HERE///////////////////////////////
/* This passes the variables in the form to the function checkForApost and
removes the apostrophes in all variables listed below */
checkForApost(theForm.student_fname.value);
checkForApost(theForm.student_lname.value);
checkForApost(theForm.student_address_no.value);
checkForApost(theForm.student_student_phone.value);
checkForApost(theForm.student_street_name.value);
checkForApost(theForm.student_username.value);
checkForApost(theForm.student_password.value);
checkForApost(theForm.student_email.value);
// This is the function mentioned above.
function checkForApost(temp)
if(temp.match("'"))
{
var apost=tmp.replace("'","");
theForm.student_username.value=ne;
}
function echeck(str) {
/* DHTML email validation script. Courtesy of SmartWebby.com (http://www.smartwebby.com/dhtml/)
Frm: ahmorrow@TSF
I know this next part isn't exactly written by me, but it works. This "SHOULDN'T" need any changes.
*/
var at="@"
var dot="."
var lat=str.indexOf(at)
var lstr=str.length
var ldot=str.indexOf(dot)
if (str.indexOf(at)==-1){
alert("Invalid E-mail ID")
return false
}
if (str.indexOf(at)==-1 || str.indexOf(at)==0 || str.indexOf(at)==lstr){
alert("Invalid E-mail ID")
return false
}
if (str.indexOf(dot)==-1 || str.indexOf(dot)==0 || str.indexOf(dot)==lstr){
alert("Invalid E-mail ID")
return false
}
if (str.indexOf(at,(lat+1))!=-1){
alert("Invalid E-mail ID")
return false
}
if (str.substring(lat-1,lat)==dot || str.substring(lat+1,lat+2)==dot){
alert("Invalid E-mail ID")
return false
}
if (str.indexOf(dot,(lat+2))==-1){
alert("Invalid E-mail ID")
return false
}
if (str.indexOf(" ")!=-1){
alert("Invalid E-mail ID")
return false
}
return true
}
function ValidateForm(){
var emailID=theForm.student_email.value;
if ((emailID.value==null)||(emailID.value=="")){
alert("Please Enter your Email ID")
emailID.focus()
return false
}
if (echeck(emailID.value)==false){
emailID.value=""
emailID.focus()
return false
}
return true
}
/////////////////////////////////END OF CHANGES/////////////////////////////////
if (theForm.student_fname.value == "")
{
alert("Please enter your \"First Name\" .");
theForm.student_fname.focus();
return (false);
}
if (theForm.student_fname.value.length < 3)
{
alert("Please enter at least 3 characters in the \"First Name\" field.");
theForm.student_fname.focus();
return (false);
}
if (theForm.student_fname.value.length > 20)
{
alert("Please enter at most 20 characters in the \"First Name\" field.");
theForm.student_fname.focus();
return (false);
}
if (theForm.student_lname.value == "")
{
alert("Please enter your \"Last Name\" .");
theForm.student_lname.focus();
return (false);
}
if (theForm.student_lname.value.length < 3)
{
alert("Please enter at least 3 characters in the \"Last Name\" field.");
theForm.student_lname.focus();
return (false);
}
if (theForm.student_lname.value.length > 20)
{
alert("Please enter at most 20 characters in the \"Last Name\" field.");
theForm.student_lname.focus();
return (false);
}
if (theForm.student_address_no.value == "")
{
alert("Please enter your contact \"Address\".");
theForm.student_address_no.focus();
return (false);
}
if (theForm.student_phone.value == "")
{
alert("Please enter your contact \"Phone\" number.");
theForm.student_phone.focus();
return (false);
}
if (theForm.student_street_name.value == "")
{
alert("Please enter your contact \"Phone\" number.");
theForm.student_street_name.focus();
return (false);
}
if (theForm.student_phone.value == "")
{
alert("Please enter your contact \"Phone\" number.");
theForm.student_phone.focus();
return (false);
}
if (theForm.student_phone.value.length < 7)
{
alert("Please enter at least 7 characters in the \"Phone\" field.");
theForm.student_phone.focus();
return (false);
}
if (theForm.student_phone.value.length > 10)
{
alert("Please enter at most 10 characters in the \"Phone\" field.");
theForm.student_phone.focus();
return (false);
}
if (theForm.student_email.value == "")
{
alert("Please enter your contact \"Email\" address.");
theForm.student_email.focus();
return (false);
}
if (theForm.student_username.value == "")
{
alert("Please enter your contact \"Email\" address.");
theForm.student_username.focus();
return (false);
}
if (theForm.student_password.value == "")
{
alert("Please enter your contact \"Email\" address.");
theForm.student_password.focus();
return (false);
}
if (theForm.student_password.value !== theForm.student_password2.value)
{
alert("Your password does not match");
theForm.student_password.focus();
return (false);
}
return (true);
}
__________________
If I have not responded to a post in 24 hours or more, PM me with a link to the thread and I'll get back to you. I do not help via PM/IM/Email. |
|
|
|
|
|
#43 (permalink) |
|
Registered User
Join Date: May 2009
Posts: 30
OS: xp sp3
|
Re: Mysql database and php
ohhhkk, i'm so sorry..
here's my register.html form with i used to the js code u supplied so i didn't post it again... HTML Code:
<form method="post" action="php/checkuser.php" onsubmit="return FrontPage_Form1_Validator(this)"> <h2 style="color:#FFFFFF">Register</h2> <div class="reg" style="margin-top:20px; margin-bottom: 0"> <ol> <li> <label for="student_fname"> First Name<em>* </em></label> <input name="student_fname" id=""/> </li> <li> <label for="student_lname"> Last Name<em>* </em></label> <input name="student_lname" id=""/> </li> <li> <label for="student_address_no">Address No<em>* </em></label> <input name="student_address_no" id=""/> </li> <li> <label for="student_street_name">Street Name </label> <input name="student_street_name" id=""/> </li> <li> <label for="student_phone">Phone<em>* </em></label> <input name="student_phone" id=""/> </li> <li> <label for="student_email">Email<em>* </em></label> <input name="student_email" id=""/> </li> <li> <label for="student_username">Username<em>* </em></label> <input name="student_username" id=""/> </li> <li> <label for="student_password">Password<em>* </em></label> <input name="student_password" type="password" id=""/> </li> <li> <label for="student_password2">Confirm Password<em>*</em></label> <input name="student_password2" type="password" id=""/> </li> </ol> <input type="submit" value="Register" style="margin-top:30px; margin-bottom:0px;margin-left:150px;"/> <input type="reset" value="Reset" style="margin-top:30px; margin-bottom:0px;margin-left:0px;"/> </form> and this is my checkuser.php code, which appears to be ok PHP Code:
So unfortunately, it did not check for apostrophes or correct email format :( thanks again.....randyrr |
|
|
|
|
|
#44 (permalink) |
|
God (TSF Enthusiast)
Join Date: May 2009
Location: Jeffersonville, IN
Posts: 893
OS: Ubuntu 9.10 [Karmic Koala]
|
Thanks Randy, I'll take a look at it and see what I can do. May be a few hours, definitely by tomorrow.
[[--merged from double-post —dm01 --]] Alright, try replacing the html file you're currently using with this. EVERYTHING. Don't try to change anything just yet. We'll work on posting it to the php file soon, but now we need to test and be sure the validation is working correctly. HTML Code:
<html> <head> <script type="text/javascript"> function validateFormOnSubmit(theForm) { var reason = ""; reason += validateUsername(theForm.student_username); reason += validatePassword(theForm.student_password,theForm.student_password2); reason += validateEmail(theForm.student_email); reason += validatePhone(theForm.student_phone); reason += validateStNo(theForm.student_address_no); reason += validateStName(theForm.student_street_name); if (reason != "") { alert("Some fields need correction:\n" + reason); return false; } alert("All fields are filled correctly"); return false; } function validateStNo(fld) { var error = ""; if (fld.value.length == 0) { fld.style.background = 'Yellow'; error = "You didn't enter a street number.\n"; } else if (isNaN(fld.value)=true && fld.value<=1) { fld.style.background = 'Yellow'; error = "Your street number is not a valid number." } else { fld.style.background = 'White'; } return error; } function validateStName(fld) { var error = ""; if (fld.value.length == 0) { fld.style.background = 'Yellow'; error = "You didn't enter a street name.\n"; } else if (isNaN(fld.value)=false) { fld.style.background = 'Yellow'; error = "Your street name should not contain numbers."; } else { fld.style.background = 'White'; } return error; } function validateUsername(fld) { var error = ""; var illegalChars = /\W/; // allow letters, numbers, and underscores if (fld.value == "") { fld.style.background = 'Yellow'; error = "You didn't enter a username.\n"; } else if ((fld.value.length < 5) || (fld.value.length > 20)) { fld.style.background = 'Yellow'; error = "The username needs to be between 5-20 characters.\n"; } else if (illegalChars.test(fld.value)) { fld.style.background = 'Yellow'; error = "The username contains illegal characters.\n"; } else { fld.style.background = 'White'; } return error; } function validatePassword(fld,fld2) { var error = ""; var illegalChars = /[\W_]/; // allow only letters and numbers if (fld.value == "") { fld.style.background = 'Yellow'; error = "You didn't enter a password.\n"; } else if ((fld.value.length < 6) || (fld.value.length > 20)) { error = "The password must be between 6-20 characters.\n"; fld.style.background = 'Yellow'; } else if (illegalChars.test(fld.value)) { error = "The password must only contain letters and numbers.\n"; fld.style.background = 'Yellow'; } else if (!((fld.value.search(/(a-z)+/)) && (fld.value.search(/(0-9)+/)))) { error = "The password must contain at least one numeral.\n"; fld.style.background = 'Yellow'; } else if (fld.value !== fld2.value) { error = "Passwords do not match.\n"; fld.style.background = 'Yellow'; fld2.style.background = 'Yellow'; } else { fld.style.background = 'White'; } return error; } function trim(s) { return s.replace(/^\s+|\s+$ ''); } function validateEmail(fld) { var error=""; var tfld = trim(fld.value); // value of field with whitespace trimmed off var emailFilter = /^[^@]+@[^@.]+\.[^@]*\w\w$/ ; var illegalChars= /[\(\)\<\>\,\;\:\\\"\[\]]/ ; if (fld.value == "") { fld.style.background = 'Yellow'; error = "You didn't enter an email address.\n"; } else if (!emailFilter.test(tfld)) { //test email for illegal characters fld.style.background = 'Yellow'; error = "Please enter a valid email address.\n"; } else if (fld.value.match(illegalChars)) { fld.style.background = 'Yellow'; error = "The email address contains illegal characters.\n"; } else { fld.style.background = 'White'; } return error; } function validatePhone(fld) { var error = ""; var stripped = fld.value.replace(/[\(\)\.\-\ ]/g, ''); if (fld.value == "") { error = "You didn't enter a phone number.\n"; fld.style.background = 'Yellow'; } else if (isNaN(parseInt(stripped))) { error = "The phone number contains illegal characters.\n"; fld.style.background = 'Yellow'; } else if (!(stripped.length == 10)) { error = "The phone number is the wrong length. Make sure you included an area code.\n"; fld.style.background = 'Yellow'; } return error; } </script> </head> <body> <form name="myForm" onsubmit="return validateFormOnSubmit(this)" action=""> <table> <tbody> <tr> <td><label for="student_username">Your user name:</label></td> <td><input name="student_username" size="20" maxlength="20" type="text"></td> </tr> <tr> <td><label for="student_password">Your password:</label></td> <td><input name="student_password" size="20" maxlength="20" type="password"></td> </tr> <tr> <td><label for="student_password2">Confirm Password:</label></td> <td><input name="student_password2" size="20" maxlength="20" type="password"></td> </tr> <tr> <td><label for="student_email">Your email:</label></td> <td><input name="student_email" size="20" maxlength="20" type="text"></td> </tr> <tr> <td><label for="student_phone">Your 10-digit telephone number:</label></td> <td><input name="student_phone" size="20" maxlength="10" type="text"></td> </tr> <tr> <td><label for="student_address_no">Street Number:</label></td> <td><input name="student_address_no" size="20" maxlength="5" type="text"></td> </tr> <tr> <td><label for="student_street_name">Street Name:</label></td> <td><input name="student_street_name" size="20" maxlength="20" type="text"></td> </tr> <tr> <td> </td> <td><input name="Submit" value="Send" type="submit" ></td> <td> </td> </tr> </tbody> </table> </form> </body> </html> [[Moderator's Note: Please do not double post. Ask a member of staff to either edit your original post or to merge consecutive posts. We don't get annoyed if you ask. —dm01]]
__________________
If I have not responded to a post in 24 hours or more, PM me with a link to the thread and I'll get back to you. I do not help via PM/IM/Email. Last edited by dm01; 11-21-2009 at 02:17 PM. |
|
|
|
|
|
#46 (permalink) |
|
God (TSF Enthusiast)
Join Date: May 2009
Location: Jeffersonville, IN
Posts: 893
OS: Ubuntu 9.10 [Karmic Koala]
|
Re: Mysql database and php
It's working fine in FF3.5
__________________
If I have not responded to a post in 24 hours or more, PM me with a link to the thread and I'll get back to you. I do not help via PM/IM/Email. |
|
|
|
|
|
#47 (permalink) |
|
Registered User
Join Date: May 2009
Posts: 30
OS: xp sp3
|
Re: Mysql database and php
kk....
ahmorrow, i'm still checking the js, i will provide some feedback tonight...however, Redcore, I want to update my database by loading the values that the user entered when registering, how can i get that to work. randyrr |
|
|
|
|
|
#48 (permalink) |
|
God (TSF Enthusiast)
Join Date: May 2009
Location: Jeffersonville, IN
Posts: 893
OS: Ubuntu 9.10 [Karmic Koala]
|
Re: Mysql database and php
I have no experience in PHP, but the logical thing to do would be to check if they're logged in and if they're not redirect them to that page. One page you might want to keep the redirect off of--and what might be causing the redirect error is the login page.
If you go to the login page and it checks to see if you're logged in and redirects you the login page and then checks to see if you're logged in and then redirects you the login page and then checks to see if you're logged in and then redirects you the login page and then checks to see if you're logged in and then redirects you the login page and then checks to see if you're logged in and then redirects you the login page and then checks to see if you're logged in and then redirects you the login page and then checks to see if you're logged in and then redirects you the login page and then checks to see if you're logged in and then redirects you the login page and then checks to see if you're logged in and then redirects you the login page and then checks to see if you're logged in and then redirects you the login page and then checks to see if you're logged in and then redirects you the login page and then checks to see if you're logged in and then redirects you the login page and then checks to see if you're logged in and then redirects you the login page and then checks to see if you're logged in and then redirects you the login page and then checks to see if you're logged in and then... You get the idea :-)
__________________
If I have not responded to a post in 24 hours or more, PM me with a link to the thread and I'll get back to you. I do not help via PM/IM/Email. |
|
|
|
|
|
#49 (permalink) |
|
Design Team Member
|
Re: Mysql database and php
^ LOL
I believe a $_SESSION variable is all you need when they login.
__________________
Free Resources PC Protection - Comodo Firewall | AVG Anti-Virus | WinPatrol | Ad-Aware | Spybot S&D | SpywareBlaster |Web Design/Programming - KompoZer (Editor) | Paint.NET (Graphic) | GIMP+GIMPShop (Graphic) | FileZilla (FTP Client) | Free Hosting | |
|
|
|
|
|
#50 (permalink) |
|
Registered User
Join Date: May 2009
Posts: 30
OS: xp sp3
|
Re: Mysql database and php
a session variable to return registration form, with database values??
How do i use the session username (whether it was reg'd or not) to find the correct row in the database e.g. SEL * from users where (session_id) = $_session....o something like that |
|
|
|
|
|
#51 (permalink) |
|
Registered User
Join Date: May 2009
Posts: 30
OS: xp sp3
|
Re: Mysql database and php
If i Uploaded an image to a particular directory, how do i display it then, a variable, therefore if another user uploads a photo, then only his/her photo will be shown as a profile pic?
|
|
|
|
|
|
#52 (permalink) |
|
God (TSF Enthusiast)
Join Date: May 2009
Location: Jeffersonville, IN
Posts: 893
OS: Ubuntu 9.10 [Karmic Koala]
|
Re: Mysql database and php
It looks a little like this....
HTML Code:
[php]php here![/php]
__________________
If I have not responded to a post in 24 hours or more, PM me with a link to the thread and I'll get back to you. I do not help via PM/IM/Email. |
|
|
|
|
|
#53 (permalink) |
|
Registered User
Join Date: May 2009
Posts: 30
OS: xp sp3
|
Re: Mysql database and php
Hey ahmorrow,
i've just checked the js and it's not working.... HTML Code:
?student_username=ewqfrewfewf'&student_password=dqdf'&student_password2='''''&student_email=%3Bqfdef'&student_phone=deqdd'&student_address_no=wfefw&student_street_name=fewfewf'&Submit=Send# |
|
|
|
|
|
#54 (permalink) |
|
God (TSF Enthusiast)
Join Date: May 2009
Location: Jeffersonville, IN
Posts: 893
OS: Ubuntu 9.10 [Karmic Koala]
|
Re: Mysql database and php
Sorry about that, try this one.
[quote=ahmorrow;2441961] HTML Code:
<html> <head> <script type="text/javascript"> function validateFormOnSubmit(theForm) { var reason = ""; reason += validateUsername(theForm.student_username); reason += validatePassword(theForm.student_password,theForm.student_password2); reason += validateEmail(theForm.student_email); reason += validatePhone(theForm.student_phone); reason += validateStNo(theForm.student_address_no); reason += validateStName(theForm.student_street_name); if (reason != "") { alert("Some fields need correction:\n" + reason); return false; } alert("All fields are filled correctly"); return false; } function validateStNo(fld) { var error = ""; if (fld.value.length == 0) { fld.style.background = 'Yellow'; error = "You didn't enter a street number.\n"; } else if (isNaN(fld.value)=true && fld.value<=1) { fld.style.background = 'Yellow'; error = "Your street number is not a valid number." } else { fld.style.background = 'White'; } return error; } function validateStName(fld) { var error = ""; if (fld.value.length == 0) { fld.style.background = 'Yellow'; error = "You didn't enter a street name.\n"; } else if (isNaN(fld.value)=false) { fld.style.background = 'Yellow'; error = "Your street name should not contain numbers."; } else { fld.style.background = 'White'; } return error; } function validateUsername(fld) { var error = ""; var illegalChars = /\W/; // allow letters, numbers, and underscores if (fld.value == "") { fld.style.background = 'Yellow'; error = "You didn't enter a username.\n"; } else if ((fld.value.length < 5) || (fld.value.length > 20)) { fld.style.background = 'Yellow'; error = "The username needs to be between 5-20 characters.\n"; } else if (illegalChars.test(fld.value)) { fld.style.background = 'Yellow'; error = "The username contains illegal characters.\n"; } else { fld.style.background = 'White'; } return error; } function validatePassword(fld,fld2) { var error = ""; var illegalChars = /[\W_]/; // allow only letters and numbers if (fld.value == "") { fld.style.background = 'Yellow'; error = "You didn't enter a password.\n"; } else if ((fld.value.length < 6) || (fld.value.length > 20)) { error = "The password must be between 6-20 characters.\n"; fld.style.background = 'Yellow'; } else if (illegalChars.test(fld.value)) { error = "The password must only contain letters and numbers.\n"; fld.style.background = 'Yellow'; } else if (!((fld.value.search(/(a-z)+/)) && (fld.value.search(/(0-9)+/)))) { error = "The password must contain at least one numeral.\n"; fld.style.background = 'Yellow'; } else if (fld.value !== fld2.value) { error = "Passwords do not match.\n"; fld.style.background = 'Yellow'; fld2.style.background = 'Yellow'; } else { fld.style.background = 'White'; } return error; } function trim(s) { return s.replace(/^\s+|\s+$ ''); } function validateEmail(fld) { var error=""; var tfld = trim(fld.value); // value of field with whitespace trimmed off var emailFilter = /^[^@]+@[^@.]+\.[^@]*\w\w$/ ; var illegalChars= /[\(\)\<\>\,\;\:\\\"\[\]]/ ; if (fld.value == "") { fld.style.background = 'Yellow'; error = "You didn't enter an email address.\n"; } else if (!emailFilter.test(tfld)) { //test email for illegal characters fld.style.background = 'Yellow'; error = "Please enter a valid email address.\n"; } else if (fld.value.match(illegalChars)) { fld.style.background = 'Yellow'; error = "The email address contains illegal characters.\n"; } else { fld.style.background = 'White'; } return error; } function validatePhone(fld) { var error = ""; var stripped = fld.value.replace(/[\(\)\.\-\ ]/g, ''); if (fld.value == "") { error = "You didn't enter a phone number.\n"; fld.style.background = 'Yellow'; } else if (isNaN(parseInt(stripped))) { error = "The phone number contains illegal characters.\n"; fld.style.background = 'Yellow'; } else if (!(stripped.length == 10)) { error = "The phone number is the wrong length. Make sure you included an area code.\n"; fld.style.background = 'Yellow'; } return error; } </script> </head> <body> <form method="post" action="php/checkuser.php" onsubmit="return validateFormOnSubmit(this)"> <table> <tbody> <tr> <td><label for="student_username">Your user name:</label></td> <td><input name="student_username" size="20" maxlength="20" type="text"></td> </tr> <tr> <td><label for="student_password">Your password:</label></td> <td><input name="student_password" size="20" maxlength="20" type="password"></td> </tr> <tr> <td><label for="student_password2">Confirm Password:</label></td> <td><input name="student_password2" size="20" maxlength="20" type="password"></td> </tr> <tr> <td><label for="student_email">Your email:</label></td> <td><input name="student_email" size="20" maxlength="20" type="text"></td> </tr> <tr> <td><label for="student_phone">Your 10-digit telephone number:</label></td> <td><input name="student_phone" size="20" maxlength="10" type="text"></td> </tr> <tr> <td><label for="student_address_no">Street Number:</label></td> <td><input name="student_address_no" size="20" maxlength="5" type="text"></td> </tr> <tr> <td><label for="student_street_name">Street Name:</label></td> <td><input name="student_street_name" size="20" maxlength="20" type="text"></td> </tr> <tr> <td> </td> <td><input name="Submit" value="Send" type="submit" ></td> <td> </td> </tr> </tbody> </table> </form> </body> </html>
__________________
If I have not responded to a post in 24 hours or more, PM me with a link to the thread and I'll get back to you. I do not help via PM/IM/Email. |
|
|
|
|
|
#55 (permalink) | |
|
Design Team Member
|
Re: Mysql database and php
Quote:
You'd register a session variable like this (real simple): PHP Code:
PHP Code:
__________________
Free Resources PC Protection - Comodo Firewall | AVG Anti-Virus | WinPatrol | Ad-Aware | Spybot S&D | SpywareBlaster |Web Design/Programming - KompoZer (Editor) | Paint.NET (Graphic) | GIMP+GIMPShop (Graphic) | FileZilla (FTP Client) | Free Hosting | |
|
|
|
|
|
|
#56 (permalink) | |
|
Registered User
Join Date: May 2009
Posts: 30
OS: xp sp3
|
Re: Mysql database and php
[quote=ahmorrow;2452896]Sorry about that, try this one.
Quote:
When I use a get method, it's still parsing nulls, apostrophes etc. |
|
|
|
|
![]() |
| Thread Tools | |
|
|