Jump to content

phpmyadmin help!!!


carmelo

Recommended Posts

What exactly is the issue you are having with PHPmyAdmin?  To install it just put it in your local server directory and follow the instructions.  Mostly you just need to give it the right username and password for you local MySQL. 

As for creating a user system that is trivial if you just want something simple and quick.  You'll want to go to php.net and look up the functions...
// mysql stuff
mysql_connect
mysql_query
mysql_fetch_array
// session stuff
session_start
$_SESSION (not a function but an array that is used to store session data)
// data handling stuff
strip_slashes
add_slashes
isset
empty
strlen
$_POST (again not a function but an array that stores post data -- from forms)
$_GET (ditto but this time from URLs generally)
// printing
print
echo
print_r (for debugging mostly)
var_dump (ditto)
Link to comment
https://forums.phpfreaks.com/topic/14379-phpmyadmin-help/#findComment-56916
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.