- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 2
- Posts with Downvotes
- 1
- Downvoting Members
- 2
8 Posted Topics
Re: Granted: and everyone calling you born mad. I wish i could fly. | |
Re: why not using $Name=$_POST['Name']; //problem here $Surname=$_POST['Surname']; //probem here $Contact=$_POST['Contact_Number']; //problem here $Email=$_POST['Email']; //probel here $Position=$_POST['Position']; //problem here $User_Name=$_POST['User_Name']; //problem here $Password=$_POST['Password']; //problem here with the capitals etc. its casesensitive, and names of the form fields are posted as indexes of $_POST[] array. not the id vlaues. better try `var_dump($_POST);` … | |
Re: the same as you set the user_id. $_SESSION['user_level']= $userlevel; where in $userlevel, you already have to have the value of user level from the Database or set during the code. | |
Re: If you are using PHPMyAdmin, create the query first from the Query button, then use it in php. It helps a lot. | |
Re: not working with my website :( my website supports .net2.0 only | |
Hi I need code of how to copy part of string. like 0092-333-1234567 so i need to copy the part 333 or 1234567 in to a new string variable sample inputs 0092-1234567-333 333-0092-1234567 NOTE: poiters can also be used i need it in Turbo C++ or Dev C++ Thanks | |
Re: brother can you explain the coding you made <script type="text/javascript"> var k=0; var df; window.onload=function() { df=document.forms[0]; df[1].onkeyup=function() { df[0].value+=df[1].value.charAt(k); k++; for(c=0;c<df[1].value.length;c++) { df[1].value=df[1].value.replace(df[1].value.charAt(c),'#'); } } } </script> I will be waiting for the explanation of the above code |
The End.