Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~1K People Reached
Favorite Forums
Favorite Tags

10 Posted Topics

Member Avatar for pancgom

[QUOTE=nav33n;526918][code=php] <?php $conn=mysql_connect("localhost","root"); mysql_select_db("test"); echo "Select a name: <select name='name'>"; $query="select name from users"; $result=mysql_query($query); while($row=mysql_fetch_array($result)){ $name=$row['name']; echo "<option value='$name'>$name</option>": } echo "</select>"; ?> [/code] This will show all the names of table users in a dropdown box. If this isnt what you were looking for, can you be more …

Member Avatar for shridhard
0
177
Member Avatar for pukkalol

Hi there.. Once running through your post. Well I believe the problem more or less would be in reltaion to the sql query. The parameters of a form will be available be available in a string format when you use the POST option. I've noticed that your sql statement , …

Member Avatar for Nick Evan
0
277
Member Avatar for web_lock

I'd like to create a desktop widget for a PHP application. Any suggestions / insights on how to go about with it.

Member Avatar for orko
0
85
Member Avatar for web_lock

I'm facing a problem with Firefox. I've got a page with a input text box element within a form . On the Click of Submit , I would like to open a new window with width =1200 and height=900 . I've used the following code [code] <form name='form' action="login_check.php" method="POST" …

Member Avatar for MidiMagic
0
117
Member Avatar for web_lock

I have got a page which has a link pertaining to a close window function. The window.close() function works perfectly fine in the case of IE based browsers , however it fails to respond on a Mozilla browser(working on tab panes) . I have tried to make use of self.close(), …

Member Avatar for web_lock
0
111
Member Avatar for werks

[QUOTE=werks;529629]Hi there programmers could you help me out. I need idea on how to create an Online Reservation of Books for a Library.. thank you in advance..[/QUOTE] Hi there A few months back I had developed a Library Management system, which is currently employed in my organization. Unfortunately , access …

Member Avatar for werks
0
83
Member Avatar for tirivamwe

I've got a few suggestions 1) As Nav33n suggested , you could make use of frames. 2) With the exception of Frames, you could look into Layers, however Layers react differently with Mozilla and IE 3) if your banner does not have any other functionality(onClick etc, links) , and its …

Member Avatar for carobee
0
142
Member Avatar for lordx78

[QUOTE=lordx78;530621]I have 2 some pages in the website I'm developing. I've also an admin page. If i want to log in to the admin page, I've to key in username and password and it will be validated and redirect me to the admin's page. The problem is, if I manually …

Member Avatar for johnsquibb
0
126
Member Avatar for anthmaina

Hmmm... you could try to control it as the client side itself , through javascript.

Member Avatar for web_lock
0
92
Member Avatar for jino

well you could make use of the the join as mentioned . Also if you hae MySQL 5 , the use of views could come in handy in the event of intensive usage. It also helps in performance

Member Avatar for jino
0
114

The End.