Jump to content

clearstatcache

Members
  • Posts

    159
  • Joined

  • Last visited

    Never

About clearstatcache

  • Birthday 12/20/1985

Profile Information

  • Gender
    Female
  • Location
    Philippines

clearstatcache's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. You may use tinyint length = 1. 1 for true and 0 for false
  2. try this... $delete_query = "delete links, pagelinks from links left join pagelinks on links.linkid = pagelinks.linkid where links.linkid=ID";
  3. the file you include is not found by the script...may be you have a wrong include_path...
  4. make sure your $id has a value......
  5. you forgot the single qoute for town='$town'
  6. i think if else is more applicable in this situation....
  7. u used that key as unique_key......aside from ur primary key....u need to have another index(s) which is unique in your table.....to be more efficient....
  8. try changing preg_match("/\<Link\>/", $line) to preg_match("/http:\/\//", $line)
  9. how about adding another index key.....say, Sequence_Key.....
  10. use function define in defining your variables in your config.php for you to be able to get the values defined in your config.php. http://www.php.net/manual/en/function.define.php
  11. not sure if this is what u want.... $str = "www.something.com"; $new = preg_replace("/($str)/", "<a href=$1>$1[/url]", $str);
  12. just a syntax error...forgot the $ sign in first line... date1=array(); ==> $date1 = array();
×
×
  • 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.