Re[2]: [PHP] Make cron file

2004-09-28 Thread Tom Rogers
Hi, Wednesday, September 29, 2004, 1:18:20 AM, you wrote: JB [snip] JB I need make a cron file, for example a .job file: JB #mi hodimeseq jobcomment JB 45 11** 0-5 php -q /home/test/test.php # Make backup JB How can make it?. JB

Re: [PHP] Need some ideas

2004-09-28 Thread Curt Zirzow
* Thus wrote Yoed Anis: Hi guys, OK I need some ideas. Somebody created the stupidest XML file I've ever seen. And of course they can't change it, and I *must* be able to read it. I'm all out of brain power on thinking how to go about reading it. I typically use simplexml to

Re: [PHP] RE: [IGNORE] [PHP] Changing mta in /etc/alternatives : how?

2004-09-28 Thread Curt Zirzow
/me puts flame thrower away darn you spoiled all the fun ;) * Thus wrote Graham Cossey: Sorry, mailed to the wrong list :( -Original Message- From: Graham Cossey [mailto:[EMAIL PROTECTED] Sent: 28 September 2004 23:27 To: Php-General Subject: [PHP] Changing mta in

[PHP] Re: PHP Web-App Frameworks?

2004-09-28 Thread M Saleh EG
On Tue, 28 Sep 2004 18:09:48 +0400, M Saleh EG [EMAIL PROTECTED] wrote: Anyone with hands on PHP frameworks? I tried Mojavi, BlueShoes, GPF, PHP-MVC, and alot of more ( alot of them are available) I need the answer from an experienced programmer( not a php newbie ) rather an application

Re: [PHP] apache 2.0.51 and php 5.0.2 static compile

2004-09-28 Thread Curt Zirzow
* Thus wrote Francis Davidson: I'm sorry to ask a question that I'm sure exists in the documents, but I have yet to see it? How does one compile php 5.0.2. statically into your apache 2.0.51 binary, everything, I've seen thus far shows how to create a php shared module? As far as I can tell

Re: [PHP] can't upload files

2004-09-28 Thread raditha dissanayake
blackwater dev wrote: Doesn't print out anything. then try phpinfo() it will tell you everything about your server, your script and data that is being passed to it. Look for anything amiss. print_r() those two variables (and any others you can think of). -- Raditha Dissanayake.

[PHP] Multiple pages of data.

2004-09-28 Thread Nick Patsaros
I'm trying to build a bulletin style system right now. I have topics and replies to each topic. If a topic gets more than 15 replies I want them to start carrying over onto page 2 and then 3 and so on with 15 replies per page. The key that I'm missing I guess is, how do I keep track of the last

[PHP] Error with php

2004-09-28 Thread Timothy Johnson
This is my first time using php on a gentoo system. I seem to be having a problem everytime I use a it exits out of the code and prints everything after that like as if it was pure text. So I am assuming the php engine doesnt even seen anything after that. Maybe I have something configured wrong

Re: [PHP] Multiple pages of data.

2004-09-28 Thread Jason Davidson
Your not totally lost on it, your very cloes to your solution. Keep track of the LIMITs with php, and not mysql. Pass the LIMIT information to the next page, and use some aritihitc to determine the next and prvious limits for the link... so you would have a var called $limit possibly, and your

Re: [PHP] Error with php

2004-09-28 Thread Jason Davidson
Can you show me an example.. wild guess without knowing what your doing, but, ? is the escape code to exit php.. so its possible thats what is happening.. but please post some code that cuases this problem. Jason Timothy Johnson [EMAIL PROTECTED] wrote: This is my first time using php on a

Re: [PHP] Multiple pages of data.

2004-09-28 Thread Matthew Fonda
Or if you wanted to do it all in PHP, without using LIMIT, you could do something like this. I'm not exactly sure how your database is set up, so I just used this made this dummy table as the one I will use in this example: create table topics(id int(8) not null auto_increment, topic

[PHP] regular expression help

2004-09-28 Thread Ed Lazor
complain Today I discovered that my ISP can't upgrade to PHP 5. They use Plesk for server Administration and PHP 5 apparently breaks Plesk. Plesk says they'll make PHP 5 support available as soon as it starts coming default on RedHat Enterprise. /complain Unfortunately, I now have a bunch of

Re: [PHP] Multiple pages of data.

2004-09-28 Thread Matthew Fonda
oops, forgot to add this, put as first line in the for loop: if ($i == $num_rows) break; On Tue, 2004-09-28 at 22:45, Matthew Fonda wrote: Or if you wanted to do it all in PHP, without using LIMIT, you could do something like this. I'm not exactly sure how your database is set up, so I just

Re: [PHP] regular expression help

2004-09-28 Thread Matthew Fonda
Howdy, Regular expressions are a simple way of matching patters. You can learn more about regular expressions in general here: http://www.opengroup.org/onlinepubs/007908799/xbd/re.html If you are interested in using regular expressions in PHP, check out these sites:

<    1   2