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>
<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
split values
I have values that are returned to me in this format:
name=>test,age=>49
Protecting forms
Alright, I want to protect some forms of mine from SQL Injections, because I had someone earlier spa
Javascript or not?
How many people prefer javascript/ajax sites? How many prefer the good old fashion straight php sit
order by date not ID number help php
I am trying to orginize the following code to order by date not id number.
any help would be grea
PHP doesn't send my mail
Hi all, I found this and used it to send mail. Simple contact form with some required fields. The va
if else problem, help please
i have this script that i made only i try to also put in a if else for for some reason the script is
pop3 and fsockopen
So I am able to connect to the pop3 server, log in, and check how many messages there are. I am hav
Cannot Connect to Database
I am writing an application to do annual reviews. I cannot get my script to work. Whenever it runs I
Please help understand this code
I noticed the index page on my site was modified this morning and found this code inserted at the bo
Transferring session variables into MySQL
I am trying to transfer $_SESSION variables into MySQL. However there is an error in my MySQL statem