Jump to content

Recommended Posts

Hello,

 

I have a field in a database that can hold either a link to an image e.g. photos/image1.jpg or a number e.g. 555-1212.

 

I need our php script to tell the difference between the two. If it is a link, it needs to display the image. If it is a number, it should display the number.

 

Any ideas on how to do this? Thanks in advance!

 

Link to comment
https://forums.phpfreaks.com/topic/62892-reading-string-from-database/
Share on other sites

Is the format of the number going to be xxx-xxxx, eg three numbers followed by a dash then four numbers

 

If is you could use a bit regex:

$var = '555-1234';

if(preg_match("/^([0-9]+){0,3}\-([0-9]+){0,4}/", $var))
{
    echo 'number';
}
else
{
    echo 'image';
}

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.