Jump to content

ac1982

New Members
  • Posts

    5
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

ac1982's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Thats one way to do it if you create a site from scratch but I have an existing site and I would like to get all the queries that my existing site sends to the server. Any other ideas?
  2. Hi Is there any php function or another way for capturing all the mysql queries that are send from the user to the server?
  3. Thank you for your help I didn't know that a function like exists.
  4. hi I have a table with the name projects and the field status is a string and an example of what the field contains is: status = '12,10,9,99,1'. I would like to create a select statement that will return all fields that inside the status field there is the value 9 and not 99. I tried the following but no results. SELECT * FROM `projects` WHERE status REGEXP '(.*)(9)(.*)'
  5. Hi I ll like some help with the following. $con = mysql_connect("localhost", "root" , ""); mysql_select_db("dabasename", $con); mysql_query("SELECT * FROM type"); $t = mysql_info(); echo $t; I tried the above code but I cannot see any information when I echo mysql_info(); Can you please tell me what am i doing wrong. Thank you
×
×
  • 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.