Jump to content

bigmikey00

New Members
  • Posts

    4
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

bigmikey00's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. ok i have a few clients that use the phpmotion script that want a custom search page and display and a custom search bar instead of default i got the custom design and page done but am having a problem with the following 1. needs to search throught 5 tables audios,blogs,images,videos,groups 2 only needs title,tags,description from all 5 tables. 3. needs to search the file tables with no drop down box (which means when you search for "look" it searches the 5 tables and displays results) any help with this would be great i even tried using predone search files and changed them for what i need but nothing works. the people who responds to this will get reconized both in forum,phpmotion sites,and inside the search.php files thanks again.
  2. i have aclient that asked if i could create a site search for him that will search his site for contents. for example currently i created one that has dropdown for audios,images,blogs and then he selects one of them and searches the database for keywords. now i am trying to make it so it has just a search bar no drop down and when he types bye bye it will search through the audio table the image table and the blog table and display all results found. how can i create this P.S i know their is sites that has scripts that can do this with admin panels and such i do not care for all that because his search info is already taken care through the cms. dbname=testing tablename=audios,blogs,images, tablefields=title,tags,description thats the info for database and tables.
  3. here is my view_images.php please tell me what i am missing my images.php file is almost the same it pulls the list of images and displays them correctly in the right order but this one will not open the game. im stuck any help would be great $username="username"; $password="password"; $database="db_name"; mysql_connect(localhost,$username,$password); @mysql_select_db($database) or die( "Unable to select database"); $query="SELECT * FROM images "; $result=mysql_query($query); $image_id=mysql_result($result,$i,"id"); $image_name=mysql_result($result,$i,"name"); $image_desc=mysql_result($result,$i,"description"); mysql_close();
  4. i am working on making this forum script i wanna allows users to upload a photo album and pictures i have everything in place including all the database info the problem is i need a page that is considered a static page lets say i use the following code in images.php <a href="view_images.php?=<?php echo $images_id; ?>"><?php echo $images_name; ?></a> this code should take me to that address but the layout is designed in view_images this is the code located in the view_albums page to load the picture from the link <IMG SRC="/images/<?php echo $images_id; ?>/<?php echo $images_name; ?>"> now im not getting the image it shows just the first one located in the database now i can change the img src line to any id number and name and it will work for that image only how can i make this work the right way please respond ASAP for this is for a client of mine Thanks in advance, Mike
×
×
  • 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.