Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    PHP


SuperbHosting.net have generously sponsored dedicated servers to ensure a reliable and scalable dedicated hosting solution for BigResource.com.





Populating Page Content From Mysql Db.


First off my db table is orginized in this way:

ImgKey (auto increments)
ImgType (pertaining to the buttons in the gallery)
ImgName (name of image)

When you click a button from the initial gallery page, my plan is to pass a query string to the next page with the appropriate ImgType. On the next page I need to grab all the records in the table with that ImgType. (you can see the next page by clicking the first button) Code:




View Complete Forum Thread with Replies

Related Forum Messages:
Passing 'var' Via GET And Then Populating Page (mysql)
I have a table with a column of numbers (random):

0000000001
0000000026
0000000059
0000000034

And I would like to link them to go to 1 specific template page. Then once on that page, the number that was clicked gets "posted" to the MySQL Query and the information for the page populated dynamically rather than having to have 4 different pages for each number (that's the way I'm doing it now). Code:

View Replies !
Adding Content To MySQL Database Then Pulling Into Php Page
Need to find a script that will add content to MySQL database from one php page then output into another php page at the same time. However the data does not need to be recorded or saved so this may make it easier.

View Replies !
Create A Control Panel So That I Can Edit The Content Of A Particular Page Via Internet Explorer Without MySQL
I am trying to create a control panel so that i can edit the content of a particular page via Internet Explorer without MySQL. I have cerated the login part of the panel and now have no clue to make the edit page script. My questions are: Can this be done and what script will do it? I'd like the script to be primarily HTML/PHP based. Any ideas anyone?

View Replies !
Populating Form From Database, Then Passing Results To Next Page
I have a multiple select input in a form that's being populated by a row
from my database as such:
<input type="checkbox" name="subm[]" value="$row[ID]">

That part is working fine as I can check the displayed page using View
Source and see that the value is the correct row number from the
database. It is then being submitted on a form by $_POST method to
another page where I want to evaluate the checkboxes and display the
contents of the entire row that corresponds to each value="$row[ID]"
that have been checked. But I can't seem to get it to work. I'm having a
problem passing the selected value. Can someone point me in the right
direction?

$query = ("SELECT * FROM `table`");
$result = mysql_query($query);

print "<p>Data for Selections:";
print "<table border=2><tr><th>You chose:";

foreach ($_POST['subm'] as $value) {
print "<tr><td>";
print "$row[ID];
";
print mysql_field_name($result, 1) . ": " . $row[name]."<br>";
print mysql_field_name($result, 2) . ": " . $row[address]."<br>";
print mysql_field_name($result, 3) . ": " . $row[city]."<br>";
print "</td></tr>";
print "</table>
";
}

if (!isset($_POST['subm'])){
print "<p>No matching entry ";
}

mysql_close();

View Replies !
PHP + MYSQL, Populating Drop Down Box
I am looking to generate a dropdown box from MYSQL data:

db name = h2, table = Working, Column = Home.

View Replies !
Populating Drop Down From MySQL
I am trying to populate a drop down menu of MySQL data using PHP and I have hit a snag. I think its probably something simple that a freah pair of eyes could pick out right away that I am just not seeing...

For some reason only the "firstname" part of the data is populating in the drop down and I can't figure out why. When I try to make changes to the echo lines to correct this, nothing shows up including the "firstname" data. Code:

View Replies !
MySql Menu Populating
My goal is to use a Drop Down Menu that is populated by
the database. The user is then able to select a name from
the Menu that pulls all of the information for a particular
person from the database. Finally, a table is populated
with the information of the selected person.

View Replies !
Populating Array With Mysql Results
I'm returning a result set of one field in a table, and want to populate an array with the results. I can't for the life of me figure out a simple way to do this without using mysql_fetch_array() to cycle through the results, append that to a var, then explode that into a var and pass that. PHP Code:

View Replies !
Populating DHTML Menu From MySQL
I have a client that would like to have drop down menus added to a nav
bar that is generated from MySQL. Is it possible to have a dynamically
driven DHTML menu from MySQL?

View Replies !
Populating Arrays From MySQL Query
I have the following code: http://pastebin.com/746601

The field 'material' in 'is_material' contains multiple values for each
record in 'is_details'. Because of this I have used
'is_material_lookup' as a reference lookup table containing the
'style_code' and 'material_code' which refer to their full details in
the respective tables.

Currently I have got the script outputting all the details and one
material then in the next block of data, repeating the details with a
different material. What I would like to achieve is having 1 block of
data with a list of all materials in that, instead of the repeat, but
sadly I can't know exactly how to do it.

View Replies !
Populating Dropdown With Mysql Entries
I would like to create a combobox in Flash which is populated with mysql data and programmed with php. For example: There are 3 entries in database .ie. apple, bannana, peach. Now these I want in combobox in Flash MX/flash5.

View Replies !
Populating A List/menu From MySQL
is there a way to populate a list, or a menu form using php, and MySQL? Basically i have a list, and i am planing to import 2 variables, id, and name, bouth id and name are variables loaded from MySQL (yes there are multiple id's, and name's) Name would be the label displayed, and the value would be id. Thats what i need. After that i will make a submit button, witch will post the selected id to a different file. How can i achive this? Does anyone hae any samples maybe?

View Replies !
Populating An Excel .csv File Rather As Well As MySQL
I am very new to this and have what may be a ridiculous question. Is there a way to have info populate both the MySQL table and an Excel .csv sheet? I know that I can go into PhpMyadmin and dump the data but this seems to be a bit cumbersome.

View Replies !
Populating Checkboxes From A MySQL Database
what im doing is populating a php variable, and trying to use the result to add either checked or nothing to the value of the checkbox. Any ideas? Code:

View Replies !
Populating A Table With Data From MYSQL
I have a mysql table with the column names like as "id" and "value" and "bizunit". I also have an HTML table that have unique DIV IDs that correspond with the mysql table.

$query = "SELECT value FROM paceReport2 WHERE bizunit = 10"

How do I write a loop statement that will populate each of the cells in the HTML table?

View Replies !
Populating A Drop Down From A MySQL Table
When they click submit, I want the name dropped from "invite" and added to a table "guests" with their answer if they are coming and how many. I know the SQL to make it happen, but I am pretty sketchy about the PHP. Code:

View Replies !
Populating An Html Form With Mysql Data.
What I have is a basic html form I have made consisting of header fields and fileds that will be populated from a mysql database. The brackets are the actual db fields and denote where I want the data to populate. Here is a small example of the form. Code:

View Replies !
Populating Multiple Drop Down Boxes From Mysql Table
Am having a problem with a dynamic, multiple drop down box query. If I run the code with only one select, it populates fine. If I run it with 2 selects then only the first drop down box populates - the second drop down box is empty. Am wondering if I need to put the query into an array and populate the boxes from there. Code:

View Replies !
How To Add My Own Content Into Page
i've built a page and made it a module... but it is almost a blank page because i don't know how to add my own content in that page... Code:

View Replies !
1 Page, Many Content
Up to now i have always created pages that are seprate and a link just goes to that pages so like index.php games.php news.php etc,

I am creating a site for someone however and they have only given me index.php and want all of the infomation inserted in to the 'content area' of the page. I know it changes the url to like index.php?news index.php?

View Replies !
Get Content From A Page
I wanted to try to get content from a page say www.google.com and use PHP to modify it to my liking.

View Replies !
Page Content
on my website i have a test.php page and link to test.php?test=1 and test.php?test=2:

<a href="test.php?test=1">Test 1</a><br>
<a href="test.php?test=2">Test 2</a><br>

what javascript script do i need to tell it what to put on these 2 pages (?test=1 and ?test=2) and where to put the content i want to have on these pages.

View Replies !
Analysing Page Content
I'd like to be able to request a page from a server and then be able to
analyse the content (rather than rendering it to the screen of my browser)
in php. I guess this is a bit like how a robot works. I've got quite a lot
of php knowledge already, but I can't think of how to do this.

Has anybody any ideas on the types of functions or mechnisms I should be
using for this?.

View Replies !
Capturing Page Content
In building an application, I am trying to capture the content of a page to see if the user has permission to view it. If they have permission, show the link. The user logs into the system and it sets a cookie. I'm trying to look for the cookie, but it doesn't show any. When I view the page directly, I do see the cookie. I'm using file_get_contents currently. Is there another way to do this so that cookies work?

View Replies !
Page Content Search
anyone know a way to search for links in a url? I would like to open a website say yahoo.com and have a list of all urls on that site. can you do it with php?

View Replies !
Content Page Layout
I'm Currently using joomla for my upcoming site but i'm not fully happy with the layouts and some panels. below are afew samples on what i need, the first 2 are what's currently on joomla and the bottom 2 are what i want Code:

View Replies !
Editing Page Content
I want to allow users to edit content in a webpage. How do I ensure that text is placed between <p> tags? and that when the user hits return that new <p> tags will be inserted?

View Replies !
Use To Search Page Content
I have a site running PHProxy. I would like to put a restriction system on what users can't view. I would prefer they don't look up porn, warez, etc. on my site.

What I want to do is create a table in mysql that acts as a blacklist. I will add words to the blacklist manually on my own, but i want php to search the content of the pages for these blacklisted words.

I think i can handle it all, except I am not sure how i should go about searching through the content of the current page. Any ideas?

View Replies !
How To Find Content On A Page
I'd like to build an extremely simple script that will be used in part of a larger script. This script will when correctly working echo if a string in the static HTML "<!--stuff-->" exists or not within the same file; thats it.

I plan on erasing and reinserting this string from and back to the file. I'd like to keep this as simple as possible and since my files change a lot I need this to work with the static string we're looking if it's anywhere on the file (and not on say specifically line 7 or 23 or something predefined). Code:

View Replies !
Change Page Content?
I want to make a page that has a dropdown menu with 13 options on it and when one of the various options are chosen, make it change the information below to the corrresponding information to that option.

View Replies !
Parse Page Content
I have a request from boss that create a small function which will keep login inforamtion. Then the page will automatic login into targeted site using stored login info and capture content of the page.

View Replies !
Generating Web Page Content
I have $results array, which contains product id’s corresponding to DB records. I would like to generate a href link with that product id in it, where if user clicks on it, a web page is automatically generated by pulling results from the database based on that product id.

Problem: I can’t figure out how to generate that type of a page without using POST or GET method.

View Replies !
Change Content Of Page...
I have a directory called members, and in it i have a seperate page for each member, but I would rather pass a variable in the url that would choose what to have the page display. so you'd go to "member.php?member=person1", and on the page it would be something like this (this is in javascript, since that's all i know)

if (member == "person1") {
document.write("This is member one, he likes swimming, ice cream, etc"); }

if (member == "person2") {
document.write("This is member two, she likes jogging, complaining, coctail parties, etc"); }

how would i do this in php? thanks a lot :)

View Replies !
Content Will Not Display Until Page Refreshed
I have a web site in php that is (trying to be) a local directory.
The first and second pages (index.php and index2.php) do not appear when going to the web site unless you hit the refresh button.

The problem occurs with all I know who have visited the page.

The problem "disappears" if you visit the site and return in the same browser session -- presumably because it is now in the cache.

My first foray into php was to update and expand a local directory I had made originally coded in html. I purchased the php "site" and modified it extensively, learning a very little bit along the way about PHP and MySQL and Apache server.

I have submitted the issue to the ISP and to the program writer, each of whom points the finger at each other, and no solution.

I have searched the forums to no avail -- I found one post in WirdPress.org that is unanswered, and another post in Joomla which was ansered with several suggestions to edit the .htaccess file, none of which worked.

I have cleared my browser many times, but I doubt that is the problem (or else why would everyone who visits have the problem).

View Replies !
Reading Complete Page Content
I'm looking for some php code or for ideas how to read the complete
content of a single page. Like a small spider or indexer. I want to
read the content and put it into a MySQL database for a small search
funktion.

View Replies !
Display Only A Certain Amount Of Content Per Page?
Basically, i am using file() and a for loop to display content from text files, but i don't want to have all the information displayed at the same time.

I want to show the first 20 lines, then have a link saying "Click for the next 20 entries" which takes the user to the next page which has the next 20 lines. What is the simplest way to do this?

View Replies !
Update Page Content From A Form
I want to have a web page that uses variables from a text file as some of its content.
I want another page with a form that will allow me to updated/change the variables in the text file. I have no need to add variables using the form only change the values of existing variables.

Basically I want to make some content on one of my pages update-able using a form; not entire paragraphs just single words that I have laid out in a table. I have been told that I should just use something like mySQL for this. I do not know if it is necessary since I only want to do it to one page.

View Replies !
Using A Link To Change Page Content
Basically I have a page to enter data into a mysql db via a form. After the data has been input, this form disappears and instead (on the same page) the data is shown in the same format, just not editable anymore.

What I need to do is have a link that will be able to switch between the two states, being 'edit' and 'view'.

View Replies !
Transferring The POST Content From One Page To Another
Is there an easy way to transfer a page POST content to the next page?
Right now I read out the POST content in the PHP script and put it in a
html form (with POST as content type) as a hidden field, but I am
wondering if there isn't a nicer solution to do this. I need this
functionality so that the user is able to re-login if for some reason
his/her session got lost.

This happens every now and then when the user
is completing a form and hence the need for re-submitting the form data
after logging in again. The form also contains arrays, so I have to
iterate through all of them which is okay.

View Replies !
Phrasing Only The Content Area Of A Page
I am trying to return only the content section of a page that is a "text" page, so the forum would not apply, like an about.com or wikipedia article is what i am trying to get.

On wiki I know I can easily do it by getting the div labeled "content", but what abotu pages that aren't labeled, is there any ideas out there?

View Replies !
Importing Content From Changing Page
I am trying to import content from a forest fire bulletin, but each time it is updated they change the filename.. I can find out what the filename is from Page A by doing this: Code:

View Replies !
Getting Content From Password Protected Page
I would like to know is it possible to get page content from password protected area (page). I would like to get some text out of page, but that page is password protected (you need to have logged in to see it). I have the password and username to get into page normally, but I want to get same content dynamically.

View Replies !
Display My Content Pages WITHIN My Index Page
Basically I have a layout index page. What I want to accomplish is display my content pages WITHIN my index page and I dont want to use iframes. Code:

<?php
if(strstr($id, "..") || $id[0]=="/") $id = "";
if(empty($id)) $id = "/home/vbd/public_html/home.html";
else { $id = $id . ".html"; }
if(is_file("$id")){ include("$id");
} else include ("404error.html");?>

I'm formatting my links like this: Code: <a href="index.php?id=news">News</a> And heres what's happening, the home page work as it should but none of the links are working.

View Replies !
Dynamic Content - Writing DB Info To A Page
I'm writing a website that works on similar lines as a dating site, where end users can enter their details and what they want to sell, which is then submitted on to a webpage, any people that are interested in that product, contact us and we then pass the lead to the person who is doing the selling. So basically teh site is acting as a middle man.

I have done the database bit where the end user enters his details, we get emailed his details and his id (which is a an auto increment field) then there is a page called view.php which pulls up his details on a web page and there is then a submit and decline button. Teh decline button is the easy part, but the bit that I'm stuck on now is the submit part. And thus here is my question how do i write information that is held on a database to a webpage. But this webpage has to ADD and and not OVERWRITE what is already there as we want to create a listing? Code:

View Replies !
PHP Script That Displays Another Page Partial Content
If you go to http://europe.nokia.com/A4305060, fill the "Enter your
product code:" field with the value "0523183" and press "Go" (the
ending page URL varies because there's a variable session-ID in the
URL-link associated to "Go") you will obtain this string:

"Version: RM43_V1.10.030"

Is it possible to have a string.php page that just display this string?

View Replies !
Making Sure Page Shows Latest Content
Is there a way to make sure the client browser loads a php script from the server each time, rather than displaying what it has saved in the cache? I have a script which displays the contents of my Sql table, but the browser often displays the previous version, without any records that have been added since.

View Replies !
Preg_match_all , Pulling Content From Html Page
This is what I have:

preg_match_all("/<tr class="*tdshade.*>(.*)</tr>/U", $result, $matches);

$result is a string of HTML like so: Code:

View Replies !
Str_replace - Add Some Content On The Page To Show What You Have Submitted?
I had this wacky idea to have a pull down that keeps the same values when previewing what they have select in the post (ie. Webmaster World's 'Preview' Button When you post It has the same value of what u put in it when you add some content on the page to show what you have submitted) My Code:

$genre_pulldown = "<select name="genre" id="genre"><optgroup label="Genre"><option value="Yo Mama">Yo Mama</option><option value="Blonde">Blonde</option><option value="Political">Political</option><option value="Religious">Religious</option><option value="knock Knock Jokes">knock Knock Jokes</option></optgroup></select>";
if(!isset($_POST['genre'])){
echo $genre_pulldown;
}
else{
$genre_pulldown = str_replace('{$_POST['genre']}"', '{$_POST['genre']}" selected', '{$genre_pulldown}');//LINE 81
}

View Replies !
Form Post Content Making Page Not Found
We have a system where users track email correspondences by cutting and pasting previous emails into a text area form and submitting them. When the (to, from, subject) code is included, the processing page is not found. When that code is removed form the text area, it process just fine. Is there a way to avoid this?

I've tried strip_tags and htmlspecialchars. Neither have worked as it appears the code in the post affects things prior to to point where PHP would kick in. Code:

View Replies !
Need To Reformat Content Extracted From External Html Page
When I output the extracted content (a html table from an external page) the table is too wide to fit into the design of my site. Is there a way I can tell php to look for width=value and ignore those?

View Replies !
Putting Content Of Required File Into Variable And Not Automatically Printing To Page
I want to create a variable whose value is the content of required file/s. In the code below, when require() is used the content in the required pages is automatically printed:
Code:

View Replies !
Write A Simple Script Which Will Show Different Content On A Page Depending On The Week And Time
I am trying to write a simple script which will show different content on a page depending on the week and time (it needs to change at 5pm on Friday over the weekend) and I came up with this: Code:

View Replies !

Copyright © 2005-08 www.BigResource.com, All rights reserved