Jump to content

dualshock03

Members
  • Posts

    14
  • Joined

  • Last visited

    Never

About dualshock03

  • Birthday 10/05/1986

Contact Methods

  • AIM
    -
  • Yahoo
    dualshock03

Profile Information

  • Gender
    Male
  • Location
    United Archipelago of the Philippines

dualshock03's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. can you show me ur code on it?? was it directly from the database query?
  2. MY TOPIC IS SOLVED thanks for the tips! i just found this forum page which has match similar to my problem and it worked for me.. so easy to say than really done.. http://www.webmasterworld.com/forum88/6628.htm
  3. I just found this article... and im going for it, no other choice.. it stores the image to the database and retrieves the image as string.. http://www.phpbuilder.com/columns/florian19991014.php3?page=1 http://www.phpbuilder.com/columns/florian19991014.php3?page=2 http://www.phpbuilder.com/columns/florian19991014.php3?page=3 hope this solves the entire problem..
  4. ok i already try this codings.. but the result is... all the controls are empty.. the drop down,textbox and the rest became empty.. conflict on mysql query i think.. mysql query: if (isset($_GET['towname'])) { $coldata_list_town_rec = $_GET['towname']; } mysql_select_db($database_mySQL, $mySQL); $query_list_town_rec = sprintf("SELECT towname, num_brgy, townhistory, townborn, town_pop, general_info FROM tbltowns where towname LIKE %s ", GetSQLValueString("%" . $coldata_list_town_rec . "%", "text")); $list_town_rec = mysql_query($query_list_town_rec, $mySQL) or die(mysql_error()); $row_list_town_rec = mysql_fetch_assoc($list_town_rec); $totalRows_list_town_rec = mysql_num_rows($list_town_rec); ?> <form action="/lcr8/townspots.php" method="post" name="formdropdown" id="formdropdown"> <label> </MM:DECORATION> </MM_REPEATEDREGION> <MM_REPEATEDREGION SOURCE="@@rs@@"> </label> <span id="spryselect1"> <label> <select name="towname" id="towname"> <option value="value">Select Municipality...</option> <?php do { ?> <option value="<?php echo $row_list_town_rec['towname']?>"><?php echo $row_list_town_rec ['towname']?></option> <?php } while ($row_list_town_rec = mysql_fetch_assoc($list_town_rec)); $rows = mysql_num_rows($list_town_rec); if($rows > 0) { mysql_data_seek($list_town_rec, 0); $row_list_town_rec = mysql_fetch_assoc($list_town_rec); } ?> </select> </label> <span class="selectRequiredMsg">Please select an item.</span> </span> </form>
  5. anyone?? generating its corresponding column records in the database just like searching records: (DROP DOWN CONTROL)= list are from the db in column "towname" -town1 -town2 -town3 ---------------- when i click one of the lists... "for exmple i choose "town1" " then the result on the textbox, labels, and some imageplaceholders will be... textbox = population data of town1 label = town name data of town1 image placeholder = image data of town1 etc... how will i code it in javascript or in PHP?? [attachment deleted by admin]
  6. hey guys... im coming back to this thread... what if i want to generate its corresponding column records in the database just like searching records: (DROP DOWN)= list are from the db in column "towname" -town1 -town2 -town3 ---------------- when i click one of the lists... "for exmple i choose "town1" " then the result on the textbox, labels, and some imageplaceholders will be... textbox = population data of town1 label = town name data of town1 image placeholder = image data of town1 etc... how will i code it in javascript or in PHP??
  7. Ohh Man... need to wait long... im tired searching within 3 days, still thesame samples and suggestions..
  8. Hey i want to clarify about this.. i try all your sample codes but dsnt work.. still some binary codes appear.. any other ways?? im using dreamweaver CS3
  9. Anyway what about this ajax? i dont know how to use it.. easiest?
  10. pratically im stilll a newbie to this PHP Dreamweaver coding.. and im still on the basics using notepad.. i want to know how to populate the data to the textbox and labels upon selecting a "record"/ or a "word" list, from a drop down list control in dreamweaver... the drop down list is database dependent " i mean the lists are from the database and then whenever i choose one list, its corresponding records will appear from the lables, textboxes some list/menus.. Hope anyone will give me some good samples.. cheers!!
  11. HI guys.. i want know how to pass search results to my created table in design view.. I created a table with 2 rows, on 1st row are column descriptions while the second row is for retrieving of data from the database by searching.. then i have two listmenus which also use for retrieving of the corresponding data from my searching txtbox.. I'm using dreamweaver CS3 here is the image [attachment deleted by admin]
×
×
  • 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.