Jump to content

checking if url exists in database.


xwishmasterx

Recommended Posts

Pretty easy actually... just do an sql statement:

$userinputULR=$_REQUEST['url'];

"Select * from table where url=$userinputURL"

and check to see if any rows are returned using num_rows, and if num_rows result isn't 0, it already exists in your database.

 

Link to comment
Share on other sites

Best practice for this is to use a SELECT COUNT() query like:

 

SELECT COUNT(id) AS num FROM websites WHERE url = '$url'

 

There will be one row returned with just one field called 'num'.

 

Using a normal SELECT or SELECT * is inefficient because you are asking the MySQL server to pull out a dataset which you don't even need, you only want to know how many rows there are.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.