[PHP] Help with Extending PHP

2003-02-27 Thread Michel M. dos Santos
Hi, I have a doubt about extending functions in PHP. I want to use C++ language rather than C pure. I saw that dotnet module has cpp file. Is it possible ? Thanks a lot, Michel M. dos Santos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: htt

[PHP] Re: Re: Re: Editors

2003-02-27 Thread Paul Nicholson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hey Jim, - From the WINE Faq (http://www.winehq.org/). "3.8. Do I need to have a DOS partition on my system to use Wine? You do not need a licensed and installed copy of DOS or MS Windows to install, configure and run Wine. However, Wine has to b

RE: [PHP] Newbie look for some content specific tutorials

2003-02-27 Thread Cal Evans
take a look at the database abstraction layer ADODB at php.weblog.com Even if you are like me and never use more than just MySQL, it makes like a lot easier. =C= * Cal Evans * Stay Plugged Into Your Audience * http://www.christianperformer.com -Original Message- From: Hunter, Jess [mail

[PHP] Help with Arrays

2003-02-27 Thread Pushpinder Singh Garcha
Hello all I am having some problem with arrays THIS IS THE PHP CODE $temp = file("file.txt"); if(!$temp) { echo "File could not be read by array !! "; exit; } else echo "Array was opened !!"; $x = count($temp); echo "Array Count is: $x"; echo "$temp[0]"; //$P = str

Re: [PHP] Help with Arrays

2003-02-27 Thread olinux
and what problem is that?> how about just using the example? http://www.php.net/manual/en/function.file.php $lines = file ('http://www.example.com/'); // Loop through our array, show html source as html source; and line numbers too. foreach ($lines as $line_num => $line) { echo "Line #{$line

[PHP] date problem

2003-02-27 Thread Alexander Tsonev
Hello, I would ask you a question about date type if I have a variable from date type ($newdate) such as 2003-02-17 how can I separate $newdate into 3 different variables? I want to create such variables: $day=17 $month=2 $year=2003 I searched a lot, but I didn't find how to do this. I'll be very h

[PHP] Dynamic XUL?

2003-02-27 Thread Leif K-Brooks
I'm considering making a dynamic application for Mozilla/Netscape using PHP and XUL. Has anyone here done this? Anything I should be aware of? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: date problem

2003-02-27 Thread R'twick Niceorgaw
$date_array=explode("-",$newdate); $day = $date_array[2]; $month = $date_array[1]; $year = $date_array[0]; Or, $timestamp - strtotime($newdate); $today = getdate($timestamp); $month = $today['month']; $mday = $today['mday']; $year = $today['year']; "Alexander Tsonev" <[EMAIL PROTECTED]> wrote in

[PHP] Re: Help with Extending PHP

2003-02-27 Thread J Smith
This might help: http://www.tutorbuddy.com/software/phpcpp/phpcpp/ J Michel M. Dos Santos wrote: > > > Hi, > > I have a doubt about extending functions in PHP. I want to use C++ > language rather than C pure. I saw that dotnet module has cpp file. Is it > possible ? > > Thanks a lot, > >

Re: [PHP] date problem

2003-02-27 Thread Lowell Allen
> From: "Alexander Tsonev" <[EMAIL PROTECTED]> > > Hello, > I would ask you a question about date type > if I have a variable from date type ($newdate) such as 2003-02-17 > how can I separate $newdate into 3 different variables? I want to create > such variables: > $day=17 > $month=2 > $year=2003

[PHP] Re: date, "first of next month"?

2003-02-27 Thread Bryan Koschmann - GKT
On Wed, 26 Feb 2003, Philip Hallstrom wrote: | |Use the w option of date() and loop through adding 86400 to $t until you |get to a number between 1 and 5. | | w - day of the week, numeric, i.e. "0" (Sunday) to "6" (Saturday) I may of gotten ahead of myself, but I tried it using if/else. Looks lik

[PHP] PHP to read MS-SQL (solution)

2003-02-27 Thread Bryan Koschmann - GKT
Thought I would throw this out if anyone is interested. We have some proprietary accounting software that uses MS-SLQ as it's backend. Not my choice, trust me. Anyhow, I hassled the guy who made the software long enough that he created a solution until we can swith to MySQL. Basically, it runs on

[PHP] Automatically included file?

2003-02-27 Thread Dwayne Miller
New to PHP, I was wondering if PHP, running as a module under Apache 2, had an automatically included script that would run prior to any/each PHP script served by Apache? Tks, Dwayne -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: using php to rotate ad banners

2003-02-27 Thread Manuel Lemos
Hello, On 02/27/2003 04:27 PM, Joseph Bannon wrote: Why don't you just use phpAdsNew? Because I prefer to write it myself so I can learn more. You can learn more studying the solutions provided by those that already attempted to implement the same problem. Just study phpAdsNew and you will lea

RE: [PHP] Automatically included file?

2003-02-27 Thread Rich Gray
> New to PHP, I was wondering if PHP, running as a module under Apache 2, > had an automatically included script that would run prior to any/each > PHP script served by Apache? > > Tks, > Dwayne Dwayne Look into the auto_prepend_file directive that you can specify in php.ini - this may suit your n

Re: [PHP] problem in writing into an html text file

2003-02-27 Thread Michael P. Carel
this code add a backslashes in all doubleqoutes in the html file. sample: before editing my.html file after editing my.html file any idea why and how can i avoid this? > sorry here's the sample code: > > if(!$submit){ > ?> > > $filename="my.html"; > $fd=fopen($filename,"r+") or die("

RE: [PHP] problem in writing into an html text file

2003-02-27 Thread Matt Honeycutt
Check stripslashes(), I think that will help you. ---Matt -Original Message- From: Michael P. Carel [mailto:[EMAIL PROTECTED] Sent: Thursday, February 27, 2003 4:53 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] problem in writing into an html text file this code add a backslashes in all d

[PHP] Destroying COM objects

2003-02-27 Thread Sterling Anderson
When using the COM functions in PHP what is the equivalent of ASPs "set object=nothing"? I am using the Crystal Report objects and I cannot seem to destroy my Report object. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] session.use_trans_sid on php 4.3.1

2003-02-27 Thread Radu Manole
Hi guys , Seams like ini_set('session.use_trans_sid',0) does not work right on PHP 4.3.1 on Linux. //-- PHP config is: './configure' '--with-apxs=/usr/local/apache/bin/apxs' '--with-xml' '--enable-bcmath' '--enable-calendar' '--with-curl' '--with-swf=/usr/local/flash' '--enabl

RE: [PHP] Destroying COM objects

2003-02-27 Thread Rich Gray
> When using the COM functions in PHP what is the equivalent of > ASPs "set object=nothing"? > I am using the Crystal Report objects and I cannot seem to > destroy my Report object. Have you tried setting it to NULL? Rich -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP] problem in writing into an html text file

2003-02-27 Thread Michael P. Carel
thanks it's working now - Original Message - From: "Matt Honeycutt" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, February 28, 2003 7:23 AM Subject: RE: [PHP] problem in writing into an html text file > Check stripslashes(), I think that will help you. > > ---Matt > > -O

[PHP] pdf

2003-02-27 Thread johnsworld
hey guys, just a quick question re: creating pdf files on the fly. i was wondering if anyone knew if it is possible to fully justify text? thanks in anticipation, john -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] need PHP programmer

2003-02-27 Thread Jeff
Don't know if this is appropriate or not but here we go. I need help with a project. requires a PHP developer. The two programs we're using are php and MySQL. Anyone interested or anyone who can help guide me to a place to find help please reply to me directly or to the list as you feel appr

[PHP] help with arrays

2003-02-27 Thread Jim Long
Hi, Origninal Post: > I have an array with an html link as key and different $vars as val: > > $list = array ( > 'http://someplace.com/";>some place' => $vendor1_total, > 'http://anotherplace.com/";>another place' => $vendor2__total, > [snip] etc.. > > some vals are numeric and some vals are "

Re: [PHP] HELP PLEASE ! Need PHP Advice !!!

2003-02-27 Thread Justin French
Right, well there's a few issues here. 1. You're asking if there's a way to parse a QXD file so retrieve the text from it. I doubt this can be done. I had a quick google for it, to no luck. I also bothered to open up a Quark 3.32 file in my text editor, to check out the source. It looks prett

Fwd: [PHP] Help with Arrays

2003-02-27 Thread Pushpinder Singh Garcha
Begin forwarded message: From: Pushpinder Singh Garcha <[EMAIL PROTECTED]> Date: Thu Feb 27, 2003 7:57:38 PM US/Eastern To: olinux <[EMAIL PROTECTED]> Subject: Re: [PHP] Help with Arrays Thanks My question was that each line of the file should be stored as one element of the array. This is be

RE: [PHP] Preventing the "hijacking" of pictures

2003-02-27 Thread John W. Holmes
> What about using a MySQL database? Insert the picture into a field in > a table, then use a php script to call the data. I've been working on > something like this. Is it practical, or am I barking up the wrong > tree? Too much overhead, in my opinion. Same result if you just stored the files

Re: [PHP] restating plea for help with sort

2003-02-27 Thread Jason Lange
Try this code (tested): <-- Begin Code --> foreach ($list as $key => $value) { // If elements value is a numeral add to numeric_array if (is_numeric($value)) { $numeric_array[$key] = $value; // If value is not a numeral (presumably 'n/a') add to na_array } e

[PHP] output buffering

2003-02-27 Thread Kevin Waterson
I am having some problems with ob_* My goals is basically this Stuff goes here More stuff here The code below works until the showImage method is called, it does show the image however, it does not output the 'Stuff goes here!' line. any guidance greatfully recieved. Code is below.. Kevin

[PHP] virtual() test

2003-02-27 Thread John W. Holmes
Can anyone with Apache verify that you can pass arguments inside of a virtual() call? Something like: Virtual("script.pl?id=1") And have $id available within script.pl. I don't have access to an Apache server right now to test, so thank you very much. ---John W. Holmes... PHP Architect - A mo

Re: [PHP] PHP to read MS-SQL (solution)

2003-02-27 Thread Michael Sims
On Thu, 27 Feb 2003 14:31:45 -0800 (PST), you wrote: >Basically, it runs on the >MS-SQL server and allows requests in XML format on a certain port. That's actually pretty cool, from a tech standpoint, but why not access the MS-SQL database directly? From Windows it's easy, you just need the SQL

[PHP] Help!! with array's Please

2003-02-27 Thread Richard Kurth
I really need somebody to help me with this I am totally lost on what to do I need a way to read the following text file and add to or delete from or change the data. I have been able to move it all into an array using this code $groups= file("group"); for ($i=0; $i<$number_in_group; $i++){ $grou

Re: [PHP] non transmitted cookie

2003-02-27 Thread Jason Sheets
That is why I suggested passing all that over SSL which would make it very difficult to get the data even if you were able to get the packets. If you are operating with data that you care about you probably need SSL. There is not much point in creating some type of applet combination that your us

Re: [PHP] virtual() test

2003-02-27 Thread Tom Rogers
Hi, Friday, February 28, 2003, 12:09:30 PM, you wrote: JWH> Can anyone with Apache verify that you can pass arguments inside of a JWH> virtual() call? Something like: JWH> Virtual("script.pl?id=1") JWH> And have $id available within script.pl. JWH> I don't have access to an Apache server right

Re[2]: [PHP] virtual() test

2003-02-27 Thread Tom Rogers
Hi, Friday, February 28, 2003, 1:16:56 PM, you wrote: TR> Hi, TR> Friday, February 28, 2003, 12:09:30 PM, you wrote: JWH>> Can anyone with Apache verify that you can pass arguments inside of a JWH>> virtual() call? Something like: JWH>> Virtual("script.pl?id=1") JWH>> And have $id available wit

Re: [PHP] output buffering

2003-02-27 Thread Leif K-Brooks
You can't display an image like that in HTML. You need to make a second PHP script that displays just the image, and call it with a tag. Kevin Waterson wrote: >I am having some problems with ob_* > >My goals is basically this > >Stuff goes here > >More stuff here > >The code below works until th

Re: [PHP] Help!! with array's Please

2003-02-27 Thread Tom Rogers
Hi, Friday, February 28, 2003, 12:20:38 PM, you wrote: RK> I really need somebody to help me with this I am totally lost on what RK> to do RK> I need a way to read the following text file and add to or delete from RK> or change the data. RK> I have been able to move it all into an array using th

Re: [PHP] Newbie look for some content specific tutorials

2003-02-27 Thread janet
In a message dated 2/27/2003 12:47:25 PM Pacific Standard Time, [EMAIL PROTECTED] writes: >First time poster here and a 1 week old PHP/Mysql programmer > >I have bought several books and scoured the net for any and all PHP/MySQL >tutorials. Here is the problem I am running into: > >1. The docs tel

[PHP] separating value="n/a" from array

2003-02-27 Thread Jim Long
Hi, Thanks to those who have helped me. Jason Lange Wrote: > Try this code (tested): > > <-- Begin Code --> > foreach ($list as $key => $value) { > // If elements value is a numeral add to numeric_array > if (is_numeric($value)) { > $numeric_array[$key] = $valu

[PHP] 404 and parsing templates

2003-02-27 Thread Richard Baskett
Ok I created an engine, an extremely simple engine that parses a template file and then according to whatever page and language it is on it calls that template. Now the problem is that, well let me give you an example: I have a page called index.php which only has an include_once function in it

[PHP] Read

2003-02-27 Thread Karl James
Hey does anyone know if you can use PHP and ASP 3.0 or  I.I.S  on the same hard drive on XP pro? I need to know for school, because I’m taking classes for both languages.   ultimatefootballleague.com/index.php [EMAIL PROTECTED]  

[PHP] Can't run PHP cli script from Cron

2003-02-27 Thread Justin Michael Couto
I am trying to run a PHP CLI script from cron using PHP 4.3 and FreeBSD 5.0 This is what I have verified: My clock is set right I can run bash scripts from cron I have tried running the script as root and as other users If I run the PHP CLI script by had it works fine I set cron to run the scri

[PHP] =at wit's end with GD Libraries=

2003-02-27 Thread Anthony Ritter
I want to thank those who tried to help with my questions about using the GD libraries. I still have not gotten them to function using PHP. I've put two screenhots of the phpinfo() page at: www.gonefishingguideservice.com/php_page.htm If you care to take a look at those images, you'll see that

[PHP] make problem with PHP4.3.1

2003-02-27 Thread Darrin Taylor
Hi Everyone, OK I have looked through the archives and all over the net. I apologise if this has been seen before but here goes : No matter what switches I use I get the same error when I "make" ./configure goes fine. RedHat 8.1 beta PHP 4.3.1 the error is : ext/mysql/libmysql/my_lib.lo(.text+0x3

[PHP] PHP SORT_NUMERIC

2003-02-27 Thread Jim Long
Hi, I've got to sort the $numeric_arry This doesn't seem to work: sort ($numeric_array, SORT_NUMERIC); I think its sorting $key asort ($numeric_array, SORT_NUMERIC); sorts as a string THANKS AGAIN IN ADVANCE, Jim Long JanetVal Wrote: > Well, as long as you know exactly what you are looking fo

[PHP] Help with getting php going!

2003-02-27 Thread Karl James
Hey guys I finally got my phpinfo file to show on apache server But when I try to do a hello world or browser check I get a 500 error message Can anyone help me out, and educate me what I’m doing wrong.   This is my script  PHP Test <body> php if (strst</span> </blockquote><br> <h3><span class=subject><a href="/php-general@lists.php.net/msg98856.html">Re: [PHP] Help with getting php going!</a></span></h3> <div class="darkgray font13"> <span class="sender pipe"> <span class=date><a href="/search?l=php-general%40lists.php.net&q=date:20030227&o=newest">2003-02-27</a></span></span> <span class="sender pipe"> <span class=thead><a href="/search?l=php-general%40lists.php.net&q=subject:%22%5C%5BPHP%5C%5D+Help+with+getting+php+going%5C%21%22&o=newest">Thread</a></span></span> <span class=name><a href="/search?l=php-general%40lists.php.net&q=from:%22Leif+K%5C-Brooks%22&o=newest">Leif K-Brooks</a></span> </div> <blockquote><span class="msgFragment"> Please don't send MS Word content in your email.  It crashed Mozilla before I was able to reply. Karl James wrote: Hey guys I finally got my phpinfo file to show on apache server But when I try to do a hello world or browser check I g</span> </blockquote><br> <h3><span class=subject><a href="/php-general@lists.php.net/msg98857.html">[PHP] help with getting php going(2)</a></span></h3> <div class="darkgray font13"> <span class="sender pipe"> <span class=date><a href="/search?l=php-general%40lists.php.net&q=date:20030227&o=newest">2003-02-27</a></span></span> <span class="sender pipe"> <span class=thead><a href="/search?l=php-general%40lists.php.net&q=subject:%22%5C%5BPHP%5C%5D+help+with+getting+php+going%5C%282%5C%29%22&o=newest">Thread</a></span></span> <span class=name><a href="/search?l=php-general%40lists.php.net&q=from:%22Karl+James%22&o=newest">Karl James</a></span> </div> <blockquote><span class="msgFragment"> Title: Message Hey guys I finally got my phpinfo file to show on apache server But when I try to do a hello world or browser check I get a 500 error message Can anyone help me out, and educate me what I’m doing wrong.   This is my script <html> <head>  <title>PHP Test <body> php if (strst</span> </blockquote><br> <h3><span class=subject><a href="/php-general@lists.php.net/msg98858.html">Re: [PHP] help with getting php going(2)</a></span></h3> <div class="darkgray font13"> <span class="sender pipe"> <span class=date><a href="/search?l=php-general%40lists.php.net&q=date:20030227&o=newest">2003-02-27</a></span></span> <span class="sender pipe"> <span class=thead><a href="/search?l=php-general%40lists.php.net&q=subject:%22%5C%5BPHP%5C%5D+help+with+getting+php+going%5C%282%5C%29%22&o=newest">Thread</a></span></span> <span class=name><a href="/search?l=php-general%40lists.php.net&q=from:%22Kim+Kohen%22&o=newest">Kim Kohen</a></span> </div> <blockquote><span class="msgFragment"> G'day Karl > Hey guys I finally got my phpinfo file to show on apache server > But when I try to do a hello world or browser check I get a 500 error > message FWIW, I've seen this error when I've had mac line endings instead of unix. cheers kim -- PHP General Mailing List (http://www.php.</span> </blockquote><br> <h3><span class=subject><a href="/php-general@lists.php.net/msg98859.html">[PHP] RE: mysqldump</a></span></h3> <div class="darkgray font13"> <span class="sender pipe"> <span class=date><a href="/search?l=php-general%40lists.php.net&q=date:20030227&o=newest">2003-02-27</a></span></span> <span class="sender pipe"> <span class=thead><a href="/search?l=php-general%40lists.php.net&q=subject:%22%5C%5BPHP%5C%5D+RE%5C%3A+mysqldump%22&o=newest">Thread</a></span></span> <span class=name><a href="/search?l=php-general%40lists.php.net&q=from:%22Uttam%22&o=newest">Uttam</a></span> </div> <blockquote><span class="msgFragment"> snip from manual for -p option: |- -p[password], --password[=...] Password to use when connecting to server. If a password is not given on the command line, you will be prompted for it. Note that if you use the short form -p you can't have a space between the option and the password</span> </blockquote><br> <h3><span class=subject><a href="/php-general@lists.php.net/msg98860.html">[PHP] Function returns an array of objects...</a></span></h3> <div class="darkgray font13"> <span class="sender pipe"> <span class=date><a href="/search?l=php-general%40lists.php.net&q=date:20030227&o=newest">2003-02-27</a></span></span> <span class="sender pipe"> <span class=thead><a href="/search?l=php-general%40lists.php.net&q=subject:%22%5C%5BPHP%5C%5D+Function+returns+an+array+of+objects...%22&o=newest">Thread</a></span></span> <span class=name><a href="/search?l=php-general%40lists.php.net&q=from:%22Amit+Snyderman%22&o=newest">Amit Snyderman</a></span> </div> <blockquote><span class="msgFragment"> so i have a function that creates objects (with member variables) and pushes those objects onto the array. after adding all of the objects, the function then returns the array... i'm having trouble accessing the members of each object in the array...i'm trying to do something like this: class </span> </blockquote><br> <h3><span class=subject><a href="/php-general@lists.php.net/msg98861.html">[PHP] Passing url?variables</a></span></h3> <div class="darkgray font13"> <span class="sender pipe"> <span class=date><a href="/search?l=php-general%40lists.php.net&q=date:20030227&o=newest">2003-02-27</a></span></span> <span class="sender pipe"> <span class=thead><a href="/search?l=php-general%40lists.php.net&q=subject:%22%5C%5BPHP%5C%5D+Passing+url%5C%3Fvariables%22&o=newest">Thread</a></span></span> <span class=name><a href="/search?l=php-general%40lists.php.net&q=from:%22Mike%22&o=newest">Mike</a></span> </div> <blockquote><span class="msgFragment"> Hi, I'm running Apache 2.0 and PHP 4.2.2 on a RedHat 8.0 Machine. I'm unable to pass variables through a URL like index.php?test=something. Can anyone help here? I've looked through both my httpd.conf and php.ini files and didn't see anything... -Michael -- PHP General Mailing List (http://www</span> </blockquote><br> <h3><span class=subject><a href="/php-general@lists.php.net/msg98862.html">[PHP] php install help</a></span></h3> <div class="darkgray font13"> <span class="sender pipe"> <span class=date><a href="/search?l=php-general%40lists.php.net&q=date:20030227&o=newest">2003-02-27</a></span></span> <span class="sender pipe"> <span class=thead><a href="/search?l=php-general%40lists.php.net&q=subject:%22%5C%5BPHP%5C%5D+php+install+help%22&o=newest">Thread</a></span></span> <span class=name><a href="/search?l=php-general%40lists.php.net&q=from:%22Karl+James%22&o=newest">Karl James</a></span> </div> <blockquote><span class="msgFragment"> Hey guys, Im having problems getting my helloworld.php file to Work on the apache server. My phpinfo.php works perfect. I know the code is write The error message I get is # Internal Server Error The server encountered an internal error or m</span> </blockquote><br> <h3><span class=subject><a href="/php-general@lists.php.net/msg98863.html">Re: [PHP] Passing url?variables</a></span></h3> <div class="darkgray font13"> <span class="sender pipe"> <span class=date><a href="/search?l=php-general%40lists.php.net&q=date:20030227&o=newest">2003-02-27</a></span></span> <span class="sender pipe"> <span class=thead><a href="/search?l=php-general%40lists.php.net&q=subject:%22%5C%5BPHP%5C%5D+Passing+url%5C%3Fvariables%22&o=newest">Thread</a></span></span> <span class=name><a href="/search?l=php-general%40lists.php.net&q=from:%22Leif+K%5C-Brooks%22&o=newest">Leif K-Brooks</a></span> </div> <blockquote><span class="msgFragment"> http://www.php.net/manual/en/security.registerglobals.php Mike wrote: Hi, I'm running Apache 2.0 and PHP 4.2.2 on a RedHat 8.0 Machine. I'm unable to pass variables through a URL like index.php?test=something. Can anyone help here? I've looked through both my httpd.conf and php.ini files and did</span> </blockquote><br> <h3><span class=subject><a href="/php-general@lists.php.net/msg98864.html">Re: [PHP] Function returns an array of objects...</a></span></h3> <div class="darkgray font13"> <span class="sender pipe"> <span class=date><a href="/search?l=php-general%40lists.php.net&q=date:20030227&o=newest">2003-02-27</a></span></span> <span class="sender pipe"> <span class=thead><a href="/search?l=php-general%40lists.php.net&q=subject:%22%5C%5BPHP%5C%5D+Function+returns+an+array+of+objects...%22&o=newest">Thread</a></span></span> <span class=name><a href="/search?l=php-general%40lists.php.net&q=from:%22Tom+Rogers%22&o=newest">Tom Rogers</a></span> </div> <blockquote><span class="msgFragment"> Hi, Friday, February 28, 2003, 4:24:54 PM, you wrote: AS> so i have a function that creates objects (with member variables) and AS> pushes those objects onto the array. after adding all of the objects, AS> the function then returns the array... AS> i'm having trouble accessing the members of ea</span> </blockquote><br> <h3><span class=subject><a href="/php-general@lists.php.net/msg98865.html">Re: [PHP] Re: mysqldump</a></span></h3> <div class="darkgray font13"> <span class="sender pipe"> <span class=date><a href="/search?l=php-general%40lists.php.net&q=date:20030227&o=newest">2003-02-27</a></span></span> <span class="sender pipe"> <span class=thead><a href="/search?l=php-general%40lists.php.net&q=subject:%22%5C%5BPHP%5C%5D+Re%5C%3A+mysqldump%22&o=newest">Thread</a></span></span> <span class=name><a href="/search?l=php-general%40lists.php.net&q=from:%22Tom+Rogers%22&o=newest">Tom Rogers</a></span> </div> <blockquote><span class="msgFragment"> Hi, Thursday, February 27, 2003, 2:55:48 PM, you wrote: JTJ> Thanks! >> exec("mysqldump -c -q database -u user -ppassword", $sql); JTJ> Why is there no space between the -p and password? >>-ppassword JTJ> Am I wrong? JTJ> Thanks, JTJ> John Probably because a space is a valid char in password</span> </blockquote><br> <h3><span class=subject><a href="/php-general@lists.php.net/msg98866.html">Re[2]: [PHP] Help!! with array's Please</a></span></h3> <div class="darkgray font13"> <span class="sender pipe"> <span class=date><a href="/search?l=php-general%40lists.php.net&q=date:20030227&o=newest">2003-02-27</a></span></span> <span class="sender pipe"> <span class=thead><a href="/search?l=php-general%40lists.php.net&q=subject:%22Re%5C%5B2%5C%5D%5C%3A+%5C%5BPHP%5C%5D+Help%5C%21%5C%21+with+array%27s+Please%22&o=newest">Thread</a></span></span> <span class=name><a href="/search?l=php-general%40lists.php.net&q=from:%22Richard+Kurth%22&o=newest">Richard Kurth</a></span> </div> <blockquote><span class="msgFragment"> Hello Tom, Thursday, February 27, 2003, 7:39:52 PM, you wrote: TR> Hi, TR> Friday, February 28, 2003, 12:20:38 PM, you wrote: RK>> I really need somebody to help me with this I am totally lost on what RK>> to do RK>> I need a way to read the following text file and add to or delete from RK>> o</span> </blockquote><br> <h3><span class=subject><a href="/php-general@lists.php.net/msg99091.html">[PHP] Little help please</a></span></h3> <div class="darkgray font13"> <span class="sender pipe"> <span class=date><a href="/search?l=php-general%40lists.php.net&q=date:20030227&o=newest">2003-02-27</a></span></span> <span class="sender pipe"> <span class=thead><a href="/search?l=php-general%40lists.php.net&q=subject:%22%5C%5BPHP%5C%5D+Little+help+please%22&o=newest">Thread</a></span></span> <span class=name><a href="/search?l=php-general%40lists.php.net&q=from:%22Tom+Ray%22&o=newest">Tom Ray</a></span> </div> <blockquote><span class="msgFragment"> I'm looking for a webbased interface that will allow me to managae mysql databases. However, phpmyadmin has been ruled out due to the fact it requires the username and password to be stored in the config file and that it doesn't have any security to protect the average joe from stumbling across it.</span> </blockquote><br> <h3><span class=subject><a href="/php-general@lists.php.net/msg99092.html">Re: [PHP] Little help please</a></span></h3> <div class="darkgray font13"> <span class="sender pipe"> <span class=date><a href="/search?l=php-general%40lists.php.net&q=date:20030227&o=newest">2003-02-27</a></span></span> <span class="sender pipe"> <span class=thead><a href="/search?l=php-general%40lists.php.net&q=subject:%22%5C%5BPHP%5C%5D+Little+help+please%22&o=newest">Thread</a></span></span> <span class=name><a href="/search?l=php-general%40lists.php.net&q=from:%221LT+John+W.+Holmes%22&o=newest">1LT John W. Holmes</a></span> </div> <blockquote><span class="msgFragment"> > I'm looking for a webbased interface that will allow me to managae mysql > databases. However, phpmyadmin has been ruled out due to the fact it > requires the username and password to be stored in the config file No it doesn't. > and that it doesn't have any security to protect the average joe </span> </blockquote><br> <h3><span class=subject><a href="/php-general@lists.php.net/msg99093.html">[PHP] JP Graph</a></span></h3> <div class="darkgray font13"> <span class="sender pipe"> <span class=date><a href="/search?l=php-general%40lists.php.net&q=date:20030227&o=newest">2003-02-27</a></span></span> <span class="sender pipe"> <span class=thead><a href="/search?l=php-general%40lists.php.net&q=subject:%22%5C%5BPHP%5C%5D+JP+Graph%22&o=newest">Thread</a></span></span> <span class=name><a href="/search?l=php-general%40lists.php.net&q=from:%22K%22&o=newest">K</a></span> </div> <blockquote><span class="msgFragment"> Hi all, I'm using JPGraph on a localhost for a website opened via a host redirect. My problem is that nobody can see the graphs but me ('cause I'm on localhost). Any clues? Thx. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php </span> </blockquote><br> <h3><span class=subject><a href="/php-general@lists.php.net/msg99100.html">[PHP] Re: [PHP-DEV] Re: [PHP] Threading</a></span></h3> <div class="darkgray font13"> <span class="sender pipe"> <span class=date><a href="/search?l=php-general%40lists.php.net&q=date:20030227&o=newest">2003-02-27</a></span></span> <span class="sender pipe"> <span class=thead><a href="/search?l=php-general%40lists.php.net&q=subject:%22%5C%5BPHP%5C%5D+Re%5C%3A+%5C%5BPHP%5C-DEV%5C%5D+Re%5C%3A+%5C%5BPHP%5C%5D+Threading%22&o=newest">Thread</a></span></span> <span class=name><a href="/search?l=php-general%40lists.php.net&q=from:%22Braulio+Jos%C3%A9+Solano+Rojas%22&o=newest">Braulio José Solano Rojas</a></span> </div> <blockquote><span class="msgFragment"> Hi! "Rasmus Lerdorf" <[EMAIL PROTECTED]> escribió en el mensaje news:[EMAIL PROTECTED] > On Tue, 18 Feb 2003, Greg Donald wrote: > > On Tue, 18 Feb 2003, Bruce Miller wrote: > > > > >Will PHP allow multiple-thread execution? > > > > PHP4 does not have thread support. > > Well, except for pear/PECL</span> </blockquote><br> <h2> <a href="/search?l=php-general%40lists.php.net&q=date%3A20030227&start=0" accesskey="p"> < </a>    <a href="/search?l=php-general%40lists.php.net&q=date%3A20030227&start=0">1</a>   2 </h2> </div> <div class="aside" role="complementary"> <div class="logo"> <a href="/"><img src="/logo.png" width=247 height=88 alt="The Mail Archive"></a> </div> <h2> 101 - 161 of 161 matches</h2> <br> <ul><li><a href="/search?l=php-general%40lists.php.net&q=date%3A20030227&a=1&start=100">Advanced search</a></li></ul> <form class="overflow" action="/search" method="get"> <input type="hidden" name="l" value="php-general@lists.php.net"> <label class="hidden" for="q">Search the list</label> <input class="submittext" type="text" id="q" name="q" placeholder="Search php-general" value="date:20030227"> <input class="submitbutton" id="submit" type="image" src="/submit.png" alt="Submit"> </form> <div class="nav margintop" id="nav" role="navigation"> <h2 class="hidden"> Site Navigation </h2> <ul class="icons font16"> <li class="icons-home"><a href="/">The Mail Archive home</a></li> <li class="icons-list"> <a href="/php-general@lists.php.net" title="c" id="c">php-general - all messages</a></li> <li class="icons-about"> <a href="/php-general@lists.php.net/info.html">php-general - about the list</a></li> <li class="icons-expand"><a href="/search?l=php-general%40lists.php.net&q=date%3A20030227&f=1&start=100" title="e" id="e">Expand</a></li> </ul> </div> <div class="listlogo margintopdouble"> <h2 class="hidden"> Mail list logo </h2> <a href="/php-general@lists.php.net"><img src="/php-general@lists.php.net/logo.png" alt="aims"></a> </div> </div> <div class="footer" role="contentinfo"> <h2 class="hidden"> Footer information </h2> <ul> <li><a href="/">The Mail Archive home</a></li> <li><a href="/faq.html#newlist">Add your mailing list</a></li> <li><a href="/faq.html">FAQ</a></li> <li><a href="/faq.html#support">Support</a></li> <li><a href="/faq.html#privacy">Privacy</a></li> </ul> </div> <script language="javascript" type="text/javascript"> document.onkeydown = NavigateThrough; function NavigateThrough (event) { if (!document.getElementById) return; if (window.event) event = window.event; if (event.target.tagName == 'INPUT') return; if (event.ctrlKey || event.metaKey) return; var link = null; switch (event.keyCode ? event.keyCode : event.which ? event.which : null) { case 69: link = document.getElementById ('e'); break; } if (link && link.href) document.location = link.href; } </script> </body> </html>