Jump to content

nadinengland

New Members
  • Posts

    7
  • Joined

  • Last visited

    Never

Contact Methods

  • Website URL
    http://www.tea-and-crumpets.com/

Profile Information

  • Gender
    Not Telling

nadinengland's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hey again phpfreaks! I've released a new version of TAC-MySQL and i know a few of you downloaded it last time i mentioned it, so I thought id tell you of the new release. For those of you that don't know, TAC-MySQL is php written system that manages your mysql tables. Its designed for php learners who maybe borrow web space or who lend a mysql database from friends. No advance mysql knowledge is needed to work the system. Perfect for light quick use. Thanks again guys! Nad
  2. I didn't have, thanks for reminding me, ill get some better ones done soon, but for the mean time paint cropping is what you've got. http://img206.imageshack.us/img206/7959/homebs9.png http://img217.imageshack.us/img217/9223/insertsqllr3.png http://img412.imageshack.us/img412/2307/managetablesmainmf7.png http://img217.imageshack.us/img217/7449/managetablesviewqt2.png http://img207.imageshack.us/img207/7859/newtablepart1fn6.png http://img206.imageshack.us/img206/3272/newtablepart2vx9.png http://img206.imageshack.us/img206/8971/newtablepart3km5.png There all self explanatory, thanks again.
  3. Before I go on, I'm not entirely sure what all the rules are on posting your own stuff you've made, but if this is not a place to do it mods could you move it to the appropriate place. Much appreciated. Right, I've been php coding for about a year almost, a bit less and about 5 months ago my friend allowed me to borrow space of his server to host the comics I used to make. I wanted a php system to be able to manage my comics when I uploaded them so he gave me the username and password to a single mysql database. I uploaded comikaze and all was fine. I continued with my php coding until about a month ago I decided that I was bored of writing .php files to create mysql tables. So i created a php based MySQL system that could add tables to my database. Since then I've taken it further, it's now called TAC-MySQL and has some more useful features. It's not meant to be an alternative to other MySQL management systems like phpMyAdmin, as its designed for php coders who are starting out and still learning for them to be able to quickly learn what's what. TAC-MySQL is hosted on here and is freely downloadable, I do not track your activity's on the system nor do i add my own tables into your database. I hope you can look at it and tell me what you think, and I'm open to constructive criticism. Nad.
  4. I actually meant the actuall code, that it is BEFORE its on the clients side man hehe. sorry...
  5. tah man! i didnt know about " ' thanks alot! im gunna stay here, it will help my php skillz!
  6. it would help if you showed us the actuall page. :D
  7. nadinengland

    Delete

    Riiight im having trouble with my coding... *dur* I want to be able to go to "delete.php" say with "?postID=10" at the end, and do the following... [code] <?php $con = mysql_connect("host","username","password"); mysql_select_db("database", $con); $postIDdel = $_GET['postID']; $sql_delete = 'DELETE FROM yearbook WHERE postID="$postIDdel"'; if (mysql_query($sql_delete,$con)) {   mysql_query($sql_delete,$con);   header("Location: http://www.tea-and-crumpets.com/yearbook/admin-delete.php");   exit;   } else   {echo "<b>Error deleteing post:</b> " . mysql_error();} ?> [/code] Now... that doesn't work... it does take you to admin-delete afterwords, but doesnt delete the post. I know its something to do with the $sql_delete line, but im not sure what. Thanks alot. nad
×
×
  • 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.