php/mysql

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
mrjameer
Forum Newbie
Posts: 1
Joined: Mon Aug 21, 2006 10:41 am

php/mysql

Post by mrjameer »

hi

could you please tell me how to store & retrieve html code(web content) from mysql db
your help will be appreciated....

mrjameer
GeXus
Forum Regular
Posts: 631
Joined: Sat Mar 11, 2006 8:59 am

Post by GeXus »

User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

    • mysql_connect()
    • mysql_select_db()
    • mysql_real_escape_string()
    • mysql_query('INSERT ...')
    • mysql_connect()
    • mysql_select_db()
    • mysql_query('SELECT ...')
pretty simple.
Post Reply