Jump to content

[SOLVED] New Hour, New Problem.


Lamez

Recommended Posts

I have this script, which madTechie help write. What it does is find the a url in a blob of text, then it checks the database for the link, if it exist it pulls the encrypted link as the id, and makes a link to my ELC. If it does not it makes a new id which is the encrypted link, and it stores it in the DB, and makes a link to the ELC. Well if I post a link beside each other, it comes out as one link. Why?

 

here is a test page: http://links.krazypicks.com/test.php

 

try putting in a single link such as: www.phpfreaks.com.

then try putting in multiple links beside each other, such as: www.phpfreaks.com www.google.com

 

Here is the code, can you guys please explain the problem to me?

<?php
$HTML = $_POST['html'];
$result = preg_replace_callback('%\b((?:www\.|http://www\.|http://).*)\b%si', 'UpdateDB', $HTML);
echo "<br>Final Output<br>";
echo $result;

function UpdateDB($Add)
{
$id = md5($Add[1]);
$url = $Add[1];

//DB Connection...


    $sql = mysql_query("SELECT * FROM `url_list` WHERE `url`='".$url."'");
    if (!mysql_num_rows($sql) >= 1){
       mysql_query("INSERT INTO url_list (ID, URL) values ('$id','$url')");
    }else{
      $r = mysql_fetch_array($sql);
      $id = $r['id']; 
    }
   return "<a href=\"http://links.krazypicks.com?url=$id\">Link</a> ";
}
?>

Link to comment
Share on other sites

well I am always learning something new, this however is really really new to me, I can code a php page with no problem, but somethings like this are completely new to me.

 

So you are saying to look at a foreach loop. I will do that tomorrow! Thank you very much for your time.

Link to comment
Share on other sites

I figured it out! Thank you for the suggestion on the foreach loop!

 

code:

<?php
$HTML = $_POST['html'];
$HTML = explode(" ",$HTML); 
$result = preg_replace_callback('%\b((?:www\.|http://www\.|http://).*)\b%si', 'UpdateDB', $HTML);
echo "<br>Final Output<br>";
//echo $result;
//print_r($result);
foreach($result as $val){
echo $val;
}



function UpdateDB($Add)
{
$id = md5($Add[1]);
$url = $Add[1];

//DB Con...


    $sql = mysql_query("SELECT * FROM `url_list` WHERE `url`='".$url."'");
    if (!mysql_num_rows($sql) >= 1){
       mysql_query("INSERT INTO url_list (ID, URL) values ('$id','$url')");
    }else{
      $r = mysql_fetch_array($sql);
      $id = $r['id']; 
    }
   return " <a href=\"http://links.krazypicks.com?url=$id\">Link</a> ";
}
?>

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.