I figured it out i needed several iframes for each file i was uploading but i still have to pass a parameter and don't want a function to execute.
I need to pass it here, when i add the event...
Type: Posts; User: tuga; Keyword(s):
I figured it out i needed several iframes for each file i was uploading but i still have to pass a parameter and don't want a function to execute.
I need to pass it here, when i add the event...
Hi i'm trying to upload several files with an iframe.
The user presses one button that executes showUploadBar() there are five with the code <a href="javascript:showUploadBar('1');">Upload 1</a>,...
I guess i found a solution
Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query.
http://php.net/manual/en/function.mysql-insert-id.php
I just make an insert...
try this
$qry_del="select * from order_detail_table";
$result_del=mysql_query($qry_del);
while($row_del=mysql_fetch_assoc($result_del))
{
$serial=$row_del['serial'];...
Well i cannot help you much like that.
When you press the delete button you should somehow pass the id you want to delete,if you do not pass it, how do you know which record to delete?
This will...
Thanks but that was exactly what i'm doing.
When he submits the form it is an incremental number as ID but the problem is that the user will be uploading images before he submits the form, that i...
I guess that you have a form showing some kind of table with records.
Then i guess you have some checkbox to select which record(s) to delete, usually i set the value of each box with the id and...
Well i'm not what you can call an expert but what i see...
You are getting the serial number with the while statement
$qry_del="select * from order_detail_table";...
I'll try to explain what i'm trying to achieve...
I have 2 mysql tables one for items and another for images of the items.
A form where the user will be adding/editing some items.
Problem:...
http://support.microsoft.com/kb/276228
i've been tryinh to understand this and in IE it actually writes.
Here is the innerHTML in IE
Model A</OPTION>
its missing the initial <option>
Why?
Hi there,
I'm trying to replace the options in a select but without luck, it works fine on FF but not on IE.
I think this is a very basic question but i cannot figure it out. I'm trying to use...
thanks nile i actually found a solution here for everyone who is interested http://www.brandspankingnew.net/archive/2007/02/ajax_auto_suggest_v2.html
I'm not using since i've already written the...
You don't see anything because they use AJAX, create a div, position with css and put the information there, if you type at least 3 letters something comes up.
I found that the behaviors are done...
Hi there this is my first post, i'm new to javascript so please be patient.
Sorry for my english as i'm portuguese but i will try my best.
I've done a dropdown list with CSS, AJAX and PHP. The...