[PHP] Recommended Job Posting sites? Need to hire someone w/ PHP exp.

2001-02-01 Thread Brian Tully
Hey there - I was wondering what the recommended sites are to post/find jobs related to web development - especially PHP. The sites I've visited list mostly ASP and Java related jobs so I'm wondering where do the PHP folks go to find opportunities. While I'm not looking for a PHP expert, I'm

[PHP] electronic postcard recommendation?

2001-12-17 Thread Brian Tully
hi there :) i've been asked to implement an electronic postcard app for a client's website, and was wondering if anyone can recommend an existing implementation, be it open source or commercial -- preferably PHP!. I found a couple of CGI scripts that do a minimal job, but i'm not to keen on

[PHP] need help looping through each record with a query - stumped

2002-01-09 Thread Brian Tully
hey folks - i'm stumped. been working on what i thought would be a simple script to cycle through users' records and perform a query. But I can't get the loops right, it seems like only one or two records get updated. Using MySQL, we have about 2000 students enrolled. each month they take a

Re: [PHP] need help looping through each record with a query -stumped

2002-01-09 Thread Brian Tully
, January 10, 2002 11:10 AM To: Martin Towell; 'Brian Tully'; PHP DB; PHP Subject: RE: [PHP] need help looping through each record with a query - st umped If you are querying the Score = 75 how are you ging to take the Consecutive requirement into the account. --- Martin Towell [EMAIL PROTECTED

[PHP] Re: [PHP-DB] Re: [PHP] need help looping through each record witha query -stumped

2002-01-10 Thread Brian Tully
dn - thanks SO much for your detailed reply. :) yes there are tons of problems :( the last 3 consecutive Months issue is tricky enough - but the fact that the database is set up all wrong for this type of query is the real problem. unfortunately changing the structure and field formats then

[PHP] how can I return several query results per table row?

2002-09-11 Thread Brian Tully
I'm trying to figure out how I can format the results from a MySQL query so that I can display several records per row, i.e., I'd like to be able to format the results in a table with 3 columns, and as many rows as needed. Please excuse my inability to be concise - my brain seems to be fried from

[PHP] fopen r+ not working - how to add to beginning of txt file

2001-11-19 Thread Brian Tully
hey there - i've been going crazy trying to figure out how to add news items to the top of an already existing txt file containng previous news posts. While I'd love to change the system so everything is database-driven (as most of the rest of the site is), this news area has so much news posts

Re: SV: [PHP] fopen r+ not working - how to add to beginning oftxt file

2001-11-19 Thread Brian Tully
[EMAIL PROTECTED] wrote: load the content of the file into an variable first and then add the new text part into it. something like this: $text = $newtext + $text; then save it... It should work... P. -Ursprungligt meddelande- Från: Brian Tully [mailto:[EMAIL PROTECTED

Re: [PHP] Re: Redirection Question (I spoke to soon)

2003-07-24 Thread Brian Tully
on 7/24/03 8:13 PM, Beauford.2005 at [EMAIL PROTECTED] wrote: FORM onSubmit=return checkrequired(this) ACTION=season-write.php action=post name=testing someone else already raised this issue and it doesn't look like you caught it: you have two actions in your form (the second should

[PHP] upgrading from 4.1.2 to 4.3.0 - can anyone point me to a list ofMUST DO'S

2003-02-13 Thread Brian Tully
I've heard that there are significant changes made between 4.1.2 and 4.3.0 so I need to know what the effects are going to be on our existing sites running old code. Is there a document that explains the effects of upgrading to 4.3.0 from 4.1.2 along with the steps I need to take to make my sites

Re: [PHP] Show Results one at a time ?

2004-01-29 Thread Brian Tully
on 1/29/04 7:50 AM, Dave Carrera at [EMAIL PROTECTED] wrote: Hi List, I have a test function who's aim is to take an array an do something which each value of the array and show the result on screen one at a time. --- Test Function Code --- function TestFunc(){ $cnt =

[PHP] Managed Server/Cluster hosting recommendations?

2004-03-17 Thread Brian Tully
sorry if this is considered off-topic but I'm desperate to find a new hosting provider that specializes in managed servers/clusters. it looks as though our current host is going under so we need to move fast. we have a pretty intricate setup that involves load balancing of both web (Apache) and

Re: [PHP] Php error with MySql

2005-01-06 Thread Brian Tully
sounds like there's something up with the query, perhaps the wrong table name. as a debugging method I usually use the die() clause when performing a query so I can ensure the query is correct. try using this: $qResult = mysql_query (SELECT * FROM blog_entries ORDER BY id DESC) or die(could not

Re: [PHP] Storing text with carriage returns in MySQL

2004-07-15 Thread Brian Tully
Not sure if I understand the issue completely, but if it's a matter of displaying the text from the database you could use the nl2br function. http://us3.php.net/manual/en/function.nl2br.php Hope that helps, Brian on 7/15/04 4:40 PM, Andrew Wood at [EMAIL PROTECTED] wrote: Sorry, its the

[PHP] is there a more efficient query?

2004-08-06 Thread Brian Tully
i currently have to query a table for 5 separate values based on elementid and haven't figured out how to do it using just one query with an array or associative array. can someone enlighten me as to how I could perform the following queries more efficiently, i.e., is there a way to do it with

Re: [PHP] is there a more efficient query?

2004-08-06 Thread Brian Tully
on 8/6/04 12:28 PM, Jay Blanchard at [EMAIL PROTECTED] wrote: [snip] Tis SQL SELECT value FROM element_values WHERE user = $user_id AND(element=48 OR element=52 OR and so on) [/snip] You can also use IN SELECT value FROM element_values WHERE user = $user_id AND