Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #37.0K
~3K People Reached
Favorite Tags

4 Posted Topics

Member Avatar for Richtofen345

Use the code below to connect to the datsbase. It looks like you dont have mysql_select_db("dataBase_Name",$con); in your code. [CODE]<?php $con = mysql_connect("localhost","user_Name","passWord") or die("Check connection"); mysql_select_db("dataBase_Name",$con); ?>[/CODE]

Member Avatar for Deepika_6
0
2K
Member Avatar for Callum Reyes

If you can look in the task manager, in the "Processes" tab, what process is using the most resources.

Member Avatar for caperjack
0
208
Member Avatar for lwaterfo

You have: "INSERT INTO login (username, password) VALUES ('".$_POST['username']."', '".$_POST['pass']."')"; Change to: "INSERT INTO login (username,password) VALUES ('$_POST[username]','$_POST[pass]')"; Hope this helps

Member Avatar for Chi-Town
0
110
Member Avatar for Arawa

Just replace $columnName with the actual column name you want in the select tag. The actual query doesnt have to be in the select tag. The loop is what has to be inside the select tag. Hope this helps. <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></title> <?php //This …

Member Avatar for Arawa
0
163

The End.