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: [Select]<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: [Select]$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
232
38
Other forums
Any decent php formatter/beautifier/pretty printer?
Any decent php formatter/beautifier/pretty printer class/function?
I found the following whil
why does my session end?
my connect.php starts the session just so you know
i can navigate arround my site fine except whe
Sessions work for me and not others?
I'm having a bit of bad luck with sessions. In the past they have worked fine for me, but this time
Registration
ok so i have a site where people can register and login which works now thanks to someone on here th
IS this code correct
The reason i ask is everything underneath it appears to be alink as well, tis blimmin annoying
How to replace search button with link?
hi to everbody.
i have a search submit form and button like this :
<form id="f
A little help needed passing hidden values to next page
I have a page that has hidden values in a form.
example
Code: <input name='signupID
db entry based on primary key
My "topics" table contains 10 entires
*--------------*
topicid topic
------
Help to integrate whois Domain Details to website
Hi,
can i know is their any php script r methods to add domain details to my website.
search function
HI guys,
if anyone could point us in the right direction of how to do this, or provide some t