Jump to content

Drumminxx

Members
  • Posts

    92
  • Joined

  • Last visited

    Never

Everything posted by Drumminxx

  1. I always just use a hidden flash animation and then a little DHTML to make it appear when the user clicks the upload button. it's not a true progress bar but at least it gives the user some animation to look at while it uploads and its quick and easy. an animated gif won't work by the way
  2. if ($info[118] => 2500) { $active = 'ACTIVE'; } else { $active = ''; } change the operator to >= if ($info[118] >= 2500) { $active = 'ACTIVE'; } else { $active = ''; }
  3. if your trying to display the color in the drop down you need to set the style property take a look at his http://pietschsoft.com/blog/Post.aspx?PostID=204
  4. No problem Glad it worked for you!!
  5. if you go to the link I provided above, I would think that any of the first four would work. It's just a matter of what would work best. for example if this is similiar to a donation thing then use the donations or if the admin will be making recurring payments then use that
  6. When you load the player just set the src to file name using $_GET I'm not sure of the syntax of loading quicktime, you may already have it or you can find it on the web I'm sure but it would go something like this provided that id is what holds the file name [code] <EMBED SRC="<? echo $_GET['id'] ?>" WIDTH="262" HEIGHT="15" AUTOPLAY="false"></EMBED> [/code]
  7. another problem with that is if the user has javascript turned off... here's an example using eregi which is case insensitive [code]<? $s = "Ssertfrt633"; if (eregi('^[[:alnum:]]{2,}$',$s)) { echo 'ok'; }else{ echo 'bad'; } ?>[/code]
  8. Change this: [code] $sql = mysql_query("INSERT INTO users (username, password)         VALUES('$username', '$passwd')") or die (mysql_error()); $result = mysql_query($sql,$connection) or die (mysql_error()); [/code] to [code] $sql = "INSERT INTO users (username, password)         VALUES('$username', '$passwd')"; $result = mysql_query($sql,$connection) or die (mysql_error()); [/code] your using the result of the query instead of the query itself or you could just remove this line altogether if you prefer [code] $result = mysql_query($sql,$connection) or die (mysql_error()); [/code]
  9. syntax error define('PN8', ; could be others but this is what I found for starters
  10. yea here's the link I just found it [url=https://www.paypal.com/cgi-bin/webscr?cmd=p/mer/directory_intro-outside]https://www.paypal.com/cgi-bin/webscr?cmd=p/mer/directory_intro-outside[/url]
  11. its been awhile but I recall paypal having some scripts available for developers to use for this purpose, they also had a tutorial on the site. are you already using them? if not take a look at paypal
  12. I don't think a double submit would be a problem on a select (drop down) box but in case it is you could more easily put it into a function. oh yea, this is javascript and really doesn't belong here, sorry mods but its an easy one [code] <script language="javascript" type="text/javascript"> function senddata(e) { e.disabled=true; document.filter.submit(); } </script> [/code] then in your select use this [code] <select name='select' onchange="senddata(this)"> [/code] the post value is what is being sent but its name is the name of the select box, in your case its [code] $_POST['select'] [/code]
  13. yea, the above example should work provided that you created a loadVars object in your action script but I figured we should get the php right first and go from there
  14. Let me know if this works for you or not [code] echo "&answer=$send_answer&"; [/code]
  15. in your php.ini file you show session.save_path no value no value you need to set the save path or the session does not get created
  16. You have some good examples already so for what its worth here's another [code] $start_time = mktime(4,15); //start time is 4:15 $end_time = mktime(4,30); //end time is 4:30 $total_time = $end_time-$start_time; echo 'total minutes: ' .$total_time/60; [/code]
  17. try flipping your quotes around, that should do it default:     $sqlthing = "WHERE newsecid= '$pid'";     break; remember everything inside single quotes gets printed/expressed as is
  18. you could write a function to scan a directory for videos, I've used this one in the past, feel free to edit to your needs, this one return all the flv files which are flash video [code] function getVideos() { $path = $_ENV['DOCUMENT_ROOT']; $d = $path.'/videos/'; $dir = opendir($d); while ($f = readdir($dir)) { if (eregi("\.flv",$f)) $files[]=$f; } return $files; } [/code]
  19. yea just use a database and then you would have a date field along with others content,etc.. then just write a script that would select the content based on what the date is
  20. header('Location: page.html'); will redirect to the specified page what you want is include('page.html'); it will display where ever you put the include at
  21. yes you could write a script to do what you want or you could use a database, actually there are a number of ways to do this. Have you tried to write something yourself?
  22. if you just want a simple text file, you could just loop through the records you want and build a string formatted the way you want and then the code below is an example of how to create the actual text file [code] $fh = fopen('FILE_PATH', 'w') or die("ERROR: can't open file for writing"); fwrite($fh, $NEW_FORMATTED_STRING); fclose($fh); [/code]
  23. you can enable it in the php.ini or use this on top of your php page error_reporting(E_ALL); for more info look up error_reporting on php.net
  24. well, I just tried a little test with your html and it seems to be working here is the result I got Array (     [cboCompanyName] =>     [txtInvoiceDate] => 2006-07-30     [txtInvoiceId] => 1     [txtPONumber] =>     [cboTerms] =>     [cboItem] => Array         (             [0] =>             [1] =>             [2] =>             [3] =>             [4] =>             [5] =>             [6] =>             [7] =>             [8] =>         )     [txtQty] => Array         (             [0] => 3.00             [1] => 6.00             [2] => 8.00             [3] =>             [4] =>             [5] =>             [6] =>             [7] =>             [8] =>         )     [txtDescription] => Array         (             [0] =>             [1] =>             [2] =>             [3] =>             [4] =>             [5] =>             [6] =>             [7] =>             [8] =>         )     [txtRate] => Array         (             [0] =>             [1] =>             [2] =>             [3] =>             [4] =>             [5] =>             [6] =>             [7] =>             [8] =>         )     [cboTaxCode] => Array         (             [0] => .             [1] => .             [2] => .             [3] => .             [4] => .             [5] => .             [6] => .             [7] => .             [8] => .         )     [txtInvoiceMemo] =>     [test] => test ) note the values in txtQty
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.