Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
40% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
2 Commented Posts
~29.4K People Reached
Favorite Tags

8 Posted Topics

Member Avatar for Troy
Member Avatar for abelLazm
Member Avatar for Queos_1

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);` …

Member Avatar for Bukhari1986
0
551
Member Avatar for geneh23

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.

Member Avatar for geneh23
0
612
Member Avatar for heshanm

If you are using PHPMyAdmin, create the query first from the Query button, then use it in php. It helps a lot.

Member Avatar for smantscheff
0
223
Member Avatar for nirveshverma
Member Avatar for umamahesh2020
0
155
Member Avatar for Bukhari1986

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

Member Avatar for Bukhari1986
-2
134
Member Avatar for lakodajin

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

Member Avatar for almostbob
0
4K

The End.