using variables in another page
Posted on
16th Feb 2014 07:03 pm by
admin
I have a test database set up on localhost. I have a form that I can type a name into, hit the button and it puts the name into the database and into a list on my page. it works fine. Now, I wanted to make a drop down list with all the names so that you could select one to remove that name from the database. So I did this
Code: <form>
<select>
Did you know?Explore Trending and Topic pages for more stories like this.
<option><?php echo $name ?></option>
</select>
</form>
What that did was list the very last name in the list. What I thought it would do was list all the names based on the loop that I have set up to read all the names from the database. which is this
Code: $mysql = new mysqli('localhost', 'myusername', 'mypass', 'mydatabase') or die('not working');
$result = $mysql->query("SELECT * FROM myTable") or die($mysql->error);
if($result)
{
while($row = $result->fetch_object())
{
$name = $row->names;
echo $name . "<br />";
}
}
Now the while loop is in a file I called results and it is included in the index page with an include. I thought this would give me access to the $name variable and allow me to use it the same way it's being used in the loop. of course I was wrong, so how do I use it the same way?
No comments posted yet
Your Answer:
Login to answer
333
21
Other forums
Getting the full city list from maxminds geoip database
I am suprised I can't find any references to this.
I have maxminds geoip lite installed and i
php calculate
this code echoes correctly the sum but the inserted result is 0??
Code: <?php
$TotalNum
Product categories for registration
Dear all,
We are going live with the Supplier registered next week. At standard, the 'sel
try catch error
I have been trying try catch but, I can't get it to work. The code opens a non existing file called
How to restrict the display of report variants
Hello All,
I want t know how to restrict the display of report variants.
I mean, whe
Kill a process
I have a question - how can I kill a process from a command line or by using Oracle SQL Developer? I
IDOC error
Hi,
When i send IDOC from ECC system to MII there is no problem ECC side, i says message sent succe
Sum of Values in an Array
This is probably really simple... but it's been years since I've written anything, so bare with me!<
Taylor Series Function
So I am working a a project for my intro C++ class, and I am having some trouble with a function for
Developing Ajax-enabled ASP.Net applications for the iPhone
I would like to develop Ajax web applications using Visual Studio that are optimized for the iPhone.