[PHP] php coding software

2004-08-02 Thread Brad Ciszewski
Does anyone know any good software for PHP/mysql coding? I currently use DreamWeaver MX, however it doesn't have much PHP support, and no MySQL support. I just want an easy program to script in, and upload on to my webserver. Please help! :o

RE: [PHP] COUNT(*) Output Question

2004-08-02 Thread Brad Ciszewski
Wouldn't count(sku) work? -Original Message- From: Tom Ray [Lists] [mailto:[EMAIL PROTECTED] Sent: Monday, August 02, 2004 3:20 PM To: [EMAIL PROTECTED] Subject: [PHP] COUNT(*) Output Question Hey- I'm query my mySQL database to see how many of each Sku has been ordered. I am doing my

[PHP] multi-uploading

2004-08-17 Thread Brad Ciszewski
I am having troubles with a script im trying to write. I was wondering if anyone could help me. The script needs to upload 2 files to a directory, and have a field for a name, which will then figure out the URLs of the files put them in the database along with the specified name. Please help :o

[PHP] Server Uptime

2005-02-07 Thread Brad Ciszewski
What is the function, or how do you make a script that displays the server's uptime? Thanks, Brad Ciszewski www.BradTechnologies.com Web Services -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Handling Large Select Boxes

2006-04-07 Thread Brad Ciszewski
Perhaps try implementing some AJAX on the page. Therefore, once the page has loaded, the select tag is populated with different options, without actually lagging the page. ""Jay Blanchard"" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] [snip] I have a form for user interaction and p

[PHP] rounding down

2004-11-26 Thread Brad Ciszewski
hi everyone, i am looking for a snipplet to round down a number. i was wondering if you could put a negative number in the round() statement to do this, i want it to round down even if its at something.9, as long as its not a whole number, if needs to be rounded down. can anyone help me?

Re: [PHP] Read PDF files with Php

2004-11-26 Thread Brad Ciszewski
i am not sure if this uses PDFlib but, this is a wonderful script which helps create a PDF file. http://sourceforge.net/projects/pdf-php/ - Original Message - From: "Jacob Friis" <[EMAIL PROTECTED]> To: "Christopher Way" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Friday, November

[PHP] proxy - detect

2004-11-26 Thread Brad Ciszewski
does anyone know the function to get the IP address before the proxy-IP? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] buffer

2004-11-28 Thread Brad Ciszewski
is there a code you can put at the top of the your php files so that the imgs etc. load as the are put on to your computer, and it doesnt wait for the whole site to be downloaded until it is loaded to the user? *turning off the buffer basicly* Brad Ciszewski www.BradTechnologies.com 99.9% Uptime

[PHP] Re: Newbie question

2004-11-28 Thread Brad Ciszewski
try, www.BradTechnologies.com 99.9% Uptime 24/7 FREE Support Plans starting at $3.50 per month www.BradTechnologies.com "Pascal Platteeuw" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello everyone, > > Here is a newbie question for you guys who are much more advanced than me

[PHP] exclude - mysql query

2004-11-28 Thread Brad Ciszewski
i have several tables with data, and they all have a server column. there are a few tables which i need to exclude a particular server from that table. i am currently running an array to extract the data, and was wondering if i could either use PHP code or a mysql-query exclude function or somethin

[PHP] and statement

2004-11-28 Thread Brad Ciszewski
is there an 'and' statement for mysql, when you are doing multiple "where"s? www.BradTechnologies.com 99.9% Uptime 24/7 FREE Support Plans starting at $3.50 per month www.BradTechnologies.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: and statement

2004-11-28 Thread Brad Ciszewski
err i mean ... an 'or' statement sry www.BradTechnologies.com 99.9% Uptime 24/7 FREE Support Plans starting at $3.50 per month www.BradTechnologies.com "Brad Ciszewski" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > is there an 'and'

[PHP] ISP snippet

2004-12-09 Thread Brad Ciszewski
i need help to figure out the isp of a user. can anyone help me with this? -Brad www.BradTechnologies.com 99.9% Uptime 24/7 Support Packages as low as 3.50 p/month! www.BradTechnologies.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Forms In PHP

2004-12-09 Thread Brad Ciszewski
besure to have the to emails have only a , inbetween them. Example: $to = [EMAIL PROTECTED],[EMAIL PROTECTED],[EMAIL PROTECTED]; etc Hope that helps :) -Brad www.BradTechnologies.com 99.9% Uptime 24/7 Support Packages as low as 3.50 p/month cPanel/PHP/mySQL www.BradTechnologies.com "Wil Hitchm

Re: [PHP] ISP snippet

2004-12-10 Thread Brad Ciszewski
i need the script which will do this all automaticly.. i know there is a feature to get the server which the user is from. "Danny Brow" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > On Thu, 2004-12-09 at 18:17 -0600, Brad Ciszewski wrote: > > i need h

Re: [PHP] user password managment

2004-12-10 Thread Brad Ciszewski
i have changed the script around a bit, now it actually shows something, but it doesnt alternate. $thisRow = "0"; $query = mysql_query("SELECT * FROM security_images ORDER BY ID DESC", $conn); while($gt=mysql_fetch_array($query)){ extract($gt); if($thisRow % 2 == "0"){ $backgroundColor = "#CC

[PHP] alternating table entry colors

2004-12-10 Thread Brad Ciszewski
i need some assistance making my table (rows) change color for every other data. here is what i have so far, but i get a "unexpected T_STRING error". this error's line is: if($thisRow mode 2 == 0){ +=+=+ SCRIPT BELOW +=+=+ $thisRow = 0; $query = mysql_query("SELECT * FROM security_images ORDER

[PHP] Current Member Check

2004-12-19 Thread Brad Ciszewski
= $_POST["email"]; $checkEmail = mysql_query("SELECT * FROM memberInformation WHERE email = '$email'"); Thanks in advance!! Brad Ciszewski www.BradTechnologies.com Web Services -- PHP General Mailing List (http://www.php.net/) To unsubscr

[PHP] Re: Current Member Check

2004-12-19 Thread Brad Ciszewski
i appologize i forgot to add the rest: if($checkEmail != "0"){ echo("The email address has already been registerd with an account."); include("../includes/footer.php"); exit; } Thanx! Brad Ciszewski www.BradTechnologies.com Web Services "Brad Ciszewski&qu

[PHP] layers

2004-12-21 Thread Brad Ciszewski
er construction. Please check back soon!!");   Code Ends Here Any help will be greatly appreciated!! Sincerely, Brad Ciszewski www.BradTechnologies.com Web Services -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php