Re: [PHP] SQL in the database..little help please

2004-03-09 Thread Ryan A
> Hello Ryan, > > Wednesday, March 10, 2004, 1:24:04 AM, you wrote: > > RA> I have first put off magic_quotes...now can anybody tell me how > RA> YOU are doing it so I can do it the same damn exact way...reading > RA> online is a problem coz I am getting conflicting w

[PHP] refresh parent window after submit of child

2004-03-11 Thread Ryan A
s can be done in any other way) I would prefer a pure php solution as I dont know if JS will be on on the clients machine. Thanks, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Get "nice" variables from POST

2004-03-11 Thread Ryan A
> Does this look nicer? > > $fields = array('username', 'password', ...); > foreach($fields as $key) $$key = $_POST[$key]; Hi Marek, A bit confused...whats the meaning of the double $ for "key"...or is that a typo? Thanks, -Ryan -- PHP General Mailing

Re: Re[2]: [PHP] Get "nice" variables from POST

2004-03-11 Thread Ryan A
Hey Richard, > See Chapter 7 (Variables) of the PHP manual. I remember reading about variable variables and also remember not understanding them :-) Will go through ch.7 again. Thanks. Cheers, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.

RE: [PHP] OT Kinda - Top Posting

2004-03-11 Thread Ryan A
ted that I top post this... :-p wont be doing so after I download and install quotefix but feel free to flame if you cant take a joke. Cheers, -Ryan > > > Can you all > > please stop top posting? It makes the posts harder to follow. Please > > break the habit right now. > &g

Re: [PHP] Behind the scenes coding?

2004-03-14 Thread Ryan A
Hehehe, this is pretty good, 3rd or 4th time I have read this exact email. I'm guessing Jason has this saved and waits for someone to do this then copies and pastes! Cheers, -Ryan > You have started a new thread by taking an existing posting and replying > to > it while you chang

[PHP] Regex help

2004-03-15 Thread Ryan A
uld be appreciated. Thanks in advance, Cheers, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Regex help

2004-03-15 Thread Ryan A
this problem was with cookies and sessions, I found the links I got from the people on this list much better than the examples in the manual...after learning from the web I did go back to the manual and understood thing much better. Cheers, -Ryan On 3/15/2004 6:18:38 PM, Chris W. Parker ([EMAIL

[PHP] tracking emails

2004-03-15 Thread Ryan A
t I found so far, is there something I missed or any particlar way YOU do it? Thanks, -Ryan A -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Regex help (SOLVED)

2004-03-15 Thread Ryan A
veryone who gave me examples, links and suggested alternatives like explode(), but personally I thought explode too was a regex..:-(. Cheers, -Ryan A -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP Certification

2004-03-15 Thread Ryan A
st my $0.2 Cheers, -Ryan * HI, I need information about the php certification, from www.expertrating.com . Does this site has good market reputation? Does www.php.net has some plans to introduce certification path? Comments welcome. Thanks, Sheri, -- PHP General Ma

Re: [PHP] Re: tracking emails

2004-03-15 Thread Ryan A
On 3/15/2004 11:19:13 PM, Rob Adams ([EMAIL PROTECTED]) wrote: > "Ryan A" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > Hi, > > Problem: After sending the newsletter try to "see" how many people have > > actually opened the em

Re: [PHP] PHP Certification

2004-03-16 Thread Ryan A
On 3/16/2004 2:50:52 PM, joel boonstra ([EMAIL PROTECTED]) wrote: > On Mon, Mar 15, 2004 at 09:05:42AM -0700, Sheeraz fazal wrote: > > I need information about the php certification, from www.expertrating. > com . > > Does this site has good market reputation? > > I took 10 minutes yesterday and c

[PHP] PHP Zen-cart

2004-03-16 Thread Ryan A
few features, and (according to the site) easy to customize the design... Anybody have any idea if its any good? pros? cons? recomendations? Thanks, -Ryan A -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Anybody using Ensim Pro 3.5, help badly needed (0T)

2004-03-18 Thread Ryan A
to get 4.0 working but how do I get ensim working again? How do I put back these files? Thanks, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] E-mail account disabling warning.

2004-03-18 Thread Ryan A
our sites and had to email all our members informing them not to open any attachments even if it seems we sent it, if we require them to download anything it will be AT our site and not attached. They ARE getting sneakier arnt they? -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] outputting php file

2004-03-22 Thread Ryan A
prewritten code you are willing to share? if not, links, suggestions,references to the manual and comments would be appreciated. Thanks, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] outputting php file

2004-03-22 Thread Ryan A
t going to > send > them the data. You can send the download headers and then echo out what you >would have written to the file. The end result to the user will look like >they're downloading a file, although one never really existed on the server. Great, didnt think of that, wil

[PHP] Passing by conditional IF statement...why?

2004-03-22 Thread Ryan A
"debug echo"; }else {echo "No results, sorry";} * * * * * its working great when the data actually exists but when there are no matches it still executes the "if($res)" part instead of displaying "No results, sorry". Why is that? or am I using the syntax w

Re: [PHP] Re: Passing by conditional IF statement...why?

2004-03-22 Thread Ryan A
> "Ryan A" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > Hi, > > I have this simple code in my php script: > > > > * * * * * > > $res = mysql_query("SELECT product_id, now()-1 > FROM ".$tc."_prods wher

Re: [PHP] Re: Passing by conditional IF statement...why?

2004-03-22 Thread Ryan A
Hey John, Yep, this is just for one row as I need to know which file before I force a download. This is for people selling ebooks, MP3s etc I usually use a while loop if I need multiple rows returned. Cheers, -Ryan On 3/23/2004 3:07:14 AM, [EMAIL PROTECTED] wrote: > Ryan A wrote: > >

[PHP] looping variables from a file

2004-03-24 Thread Ryan A
;partially hard codeing" each key and value but how do I do this while reading from a file? and the other big problem is the file contains one or two arrays... Any ideas? Thanks, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] looping variables from a file

2004-03-24 Thread Ryan A
r a long time Definitely not my idea of fun. > This is all assuming the user comments are correct and variables from > include()'d > files are captured by get_defined_vars(). Yep, will check that out, but it should..will write back to the list if it does'nt. Thanks again. Cheers

[PHP] knowing which file is including

2004-03-26 Thread Ryan A
and lang_b, is there any way to determine which file is calling the config.inc.php (a or b) and then set the require accordingly? I dont think so but am just wondering as PHP has a crapload of solutions that I would probably never know of. Thanks, -Ryan -- PHP General Mailing List (http://www.ph

[PHP] Print PHP Code in Color on Dreamweaver MX

2004-03-30 Thread Ryan Munevar
! Sincerely, Ryan Munevar -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] blocking warning: Warning: fclose()

2004-03-30 Thread Ryan A
way to "block" just this warning while keeping all other error handling as is? Thanks, -Ryan A -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Domain Name ?

2004-04-01 Thread Ryan A
f a subdomain is used or if www is not put eg: http://foo.com you will get crappy results. HTH Cheers, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Domain Name ?

2004-04-01 Thread Ryan A
On 4/1/2004 3:57:57 PM, [EMAIL PROTECTED] wrote: > How about RTFM ? > > http://de2.php.net/parse_url Was that RTFM for me? or for the guy who originally wrote or for the first guy who replied? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Domain Name ?

2004-04-01 Thread Ryan A
> > On 4/1/2004 3:57:57 PM, [EMAIL PROTECTED] wrote: > > > How about RTFM ? > > > > > > http://de2.php.net/parse_url > > > > Was that RTFM for me? or for the guy who originally wrote or for the > first > > guy who replied? >

Re: [PHP]

2004-04-05 Thread Ryan A
On 4/5/2004 3:12:11 PM, Nunners ([EMAIL PROTECTED]) wrote: > I've got a series of functions which return a list in an array. How can I > create an empty array? Or do I need to check it's > a valid array before I > use it? > > Cheers > James James, Please put the topic in the subject line so we

Re: [PHP] Compare Case Insensitive?

2004-04-08 Thread Ryan Gibson
You could set your input string to upper case, then make all your comparisons in upper case http://www.php.net/manual/en/function.strtoupper.php On 8/4/04 4:21 pm, "Jeff Oien" <[EMAIL PROTECTED]> wrote: > How can I compare a variable submitted by a form as case > insensitive? A promotional code

[PHP] PHP - Basic Auth - Cpanel

2004-04-08 Thread Ryan A
I know where to send the data? (eg: which is the authenticating file?) Do I pass it as a GET or a POST or what? URL encode? Thanks, -Ryan A -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Hiding email address from Robots ??

2004-04-08 Thread Ryan A
epending on how badly the harvester wants your address..blah blah blah Cheers, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP - Basic Auth - Cpanel

2004-04-08 Thread Ryan A
n how to do it if the person is running IE with the latest patch? Cheers, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Problem running sql stored in the database

2004-04-09 Thread Ryan A
Hi, I am getting 2 values from a form: $client_id and $client_name (for understanding: client_id = '12' name='ryan') when the client submits the form: 1. I run a query in my php script inserts this data into the db,assigns a C_ID. 2. The query also checks if I have a stor

Re: [PHP] Problem running sql stored in the database

2004-04-09 Thread Ryan A
Hey Richard, Thanks for replying. > If that is the case you could modify your insert query: > INSERT INTO table (id, name) VALUES ('$id', '$name') No, thats not the problem, its inserting the text "$id" and "$name" instead of the values the vari

Re: [PHP] Problem running sql stored in the database

2004-04-09 Thread Ryan A
ot;'.$i2co_order_number.'";'); // even tried putting cust_qry without success $cust_result = mysql_query($cust_qry); if(!$cust_result){echo 'Error (S1) running your optional custom SQL statement.'.mysql_error();} * * * * * * code * * * * * * comments? suggestions? Thanks, -Ryan A -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] ** SOLVED** Problem running sql stored in the database

2004-04-09 Thread Ryan A
Ok, got it solved after going through all the examples at the online manual for eval() Heres the final code (case you are interested): if($sql_exists == 0){}else{$cust_qry=$o_sql; eval("\$cust_qry = \"$cust_qry\";"); $cust_result = mysql_query($cust_qry); Cheers, -Ryan --

[PHP] ATTN: List Admins

2004-04-09 Thread Ryan A
Please take out these two addresses: "Information Desk" <[EMAIL PROTECTED]> "Advance Credit Suisse Bank" <[EMAIL PROTECTED]> everytime we post to the list we get their damn autoresponders. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Problem running sql stored in the database

2004-04-09 Thread Ryan A
e (id, name) VALUES ( '" . $id . "', '" . $name > >>. "') > > > > > > awww, come on... someone besides me had to understand wtf Ryan was > > blabbering about, right > > > > ;) ;) ;) > > > > ---Joh

[PHP] Pure PHP menu tree

2004-10-25 Thread Ryan A
27;m quite sure something like this HAS been done...(I dont want to sit and recreate the whole thing as I am already in the middle of another project) if anybody can point me in the right direction as to where i can get thismucho gracias :-) Cheers, Ryan -- PHP General Mailing List (http://w

[PHP] Strange explode()

2004-10-26 Thread Ryan A
ho "".$res; print_r($final2); ?> This is the output that is confusing me: Array ( [0] => [1] => something.com/cgi-bin/atx/out.cgi?s=63&c=1&l=gals&u= [2] => blah.something.com/bs3/index1.htm ) Thanks, Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Strange explode()

2004-10-26 Thread Ryan A
Hey, Thanks, I have also gotten rid of the blank one like this: if($final2[0]==""){unset($final2[0]);} -Ryan On 10/26/2004 3:36:45 PM, Brent Baisley ([EMAIL PROTECTED]) wrote: > The result is correct. You are splitting the string based on "http://";. > > There are

[PHP] Protecting Javascript via PHP

2004-10-28 Thread Ryan A
Hey, I have been searching around the web for a way to "mangle" my javascript code the way some people do it to HTML/PHP etc so its not so easy to read. There is no "sure" way to do it and if a person is REALLY determined to get to your code...he can, but I would like that person to go through som

Re: [PHP] Protecting Javascript via PHP

2004-10-28 Thread Ryan A
the calling scripts etcthis way the .js file does not even get cached in the visitors/users machine... Just playing around with ideas,...this list is full of _really_ intelligent people I was hopeing someone else can build on it and maybe pool some of their ideas in on top of mine... Thanks, Ryan

[PHP] (Regex) not working, take a quick look at it plz?

2004-10-29 Thread Ryan A
y, '#'), $count ); } $fileContents = preg_replace($regExTags, $data, $fileContents); print_r($fileContents); ?> / end code / Thanks, Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] No luck creating dynamic images

2004-11-01 Thread Ryan A
he correct places where you can read up and learn for/by yourself. Cheers, -Ryan > > I've > been trying for most of the day to generate a simple dynamic > > > image in my php script without any success. It seems obvious that > > > something > isn't

[PHP] preg_match_all problem

2004-11-01 Thread Ryan A
;,$value[0],$res); //print_r($res); ***End of code* What am I doing wrong? Thanks, Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: [users@httpd] November 2, 2004

2004-11-02 Thread Ryan A
and I can read your email, add your name to the jackass list and delete the mail. Thanks, Ryan On 11/2/2004 5:51:04 PM, John Nichel ([EMAIL PROTECTED]) wrote: > Enrico Weigelt wrote: > > > > > So my credo is: Bush for prison, Kerry for president! > > > > My credo

Re: [PHP] VOTE TODAY

2004-11-02 Thread Ryan A
to keep the accelerator to the floor. -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Array help

2004-11-02 Thread Ryan A
=> {textlinks 0_15}) [1] => Array([0] => 0_15) ) and a fouth is created like so [3] => Array( [0] => Array([0] => {textlinks 16_30}) [1] => Array([0] => 16_30) ) Thanks, Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: VOTE TODAY

2004-11-02 Thread Ryan A
switch ($the_choice) { case Daniel_Schierbeck_1: echo 'Didnt read previous thread and comes voiceing his political opinions like a jackass on a high traffic PHP mailing list which people from different countries other than the states receive'; break; case Daniel_Schierbeck_2: echo 'Just a mo

Re: [PHP] VOTE TODAY

2004-11-03 Thread Ryan A
long live iraq!!! > > > > > > > > > > >>> Daniel Schierbeck <[EMAIL PROTECTED]> 11/3/2004 3:52:35 PM >>> > > Ryan A wrote: > > > On 11/2/2004 6:34:43 PM, ApexEleven ([EMAIL PROTECTED]) wrote: > > > > > >>I can't wait for

Re: [PHP] Re: VOTE TODAY

2004-11-03 Thread Ryan A
On 11/3/2004 2:48:28 PM, Daniel Schierbeck ([EMAIL PROTECTED]) wrote: > Ryan A wrote: > > > switch ($the_choice) { > > > case Daniel_Schierbeck_1: > > > echo > 'Didnt read previous thread and comes voiceing his political opinions > > like a jack

Re: [PHP] Re: VOTE TODAY

2004-11-03 Thread Ryan A
t place to discusse about that. Use > www.kuro5hin.org by example instead. > > Best regards, > > > Ryan A wrote: > > >On 11/3/2004 2:48:28 PM, Daniel Schierbeck ([EMAIL PROTECTED]) wrote: > > > > > >>Ryan A wrote: > >> > >> > >>

[PHP] Strange query

2004-11-04 Thread Ryan A
cond query of select gallery_url,description from members limit 16,30 is returning 17 rows!! I've even tried it within phpmyadmin and its giving me 17 rowswhat am I missing here? Thanks, Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Strange query

2004-11-04 Thread Ryan A
Hey, > the second > specifies the maximum number of rows to return. Thats where my problem was...thanks. I forget the Limit parameters, i for some reason though the second parameter was till which record to return... Loud and clear sign telling me to get some sleep (i guess) :-) Thanks

[PHP] Multiple checkboxes and multiple textboxes

2004-11-05 Thread Ryan A
per page. When the form is submitted how do I make sure that if url[] is unchecked even txt[] should not be taken? These values will be entered into the database so I need proper "matching pairs" of URL and TXT Thanks, Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscr

RE: [PHP] Multiple checkboxes and multiple textboxes

2004-11-05 Thread Ryan A
Nope, This didnt work, it just chops off the last x depending on how many were selected. Thanks, Ryan On 11/5/2004 8:46:27 PM, Jay Blanchard ([EMAIL PROTECTED]) wrote: > [snip] > > These values will be entered into the database so I need proper > > "matching > pairs&quo

RE: [PHP] Multiple checkboxes and multiple textboxes

2004-11-05 Thread Ryan A
$txt[$i])){ //echo $url[$i] . " ". $txt[$i] . "\n"; echo $i . " ". $txt[$i] . "\n"; } else { echo "".$i . " ". $txt[$i] . "\n"; } } I unchecked rows: 122,148,149,150 output I got: 0 0's te

RE: [PHP] Multiple checkboxes and multiple textboxes [SOLVED]

2004-11-05 Thread Ryan A
Hey guys, Thank you everyone who replied. The below solution from Warren worked out great for me with a little modification for my specific needs. Cheers, Ryan > Hard code the array occurrence number in the checkbox and textbox names; > checked> somesite > > The form will

Re: [PHP] Automatic Execution of Function

2004-11-07 Thread Ryan King
>Thanks. >Kevin. > I presume you're talking about executing a script on periodic basis, not on a periodic basis within a webpage. If so, and you're on a unix-like OS, try cron. -ryan - http://homepage.mac.com/ryansking/ -- PHP General Mailing List (http:/

Re: [PHP] You know you're a geek when...

2004-11-07 Thread Ryan King
know you're a geek when you know which list deals with which top >and when you know that subselects in mysql is not much faster than the >nested loop you have been using. You know you're a geek when you know there's more to software development than speed. -ryan -- P

Re: [PHP] inline_C installation

2004-11-11 Thread Ryan King
nager installed. Now type: pear install inline_c this should install the package for you. You'll probably have to add the module to your php.ini script and restart apache. -ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] unable to use vars in foreach

2004-11-14 Thread Ryan King
On Sunday, November 14, 2004, at 08:24PM, Jonathan Villa <[EMAIL PROTECTED]> wrote: > >$modules = simplexml_load_file(MODULES); > Are you certain that MODULES has been defined()? And what do you get when you print_r($modules)? -ryan -- PHP General Mailing List (http://w

Re: [PHP] unable to use vars in foreach

2004-11-14 Thread Ryan King
gt;> >> Are you certain that MODULES has been defined()? And what do you get when >> you print_r($modules)? >> >> -ryan >> > >Yes MODULES is defined. It's defined in an include file. In my loop, >when I echo the $mod->postName the values print

Re: [PHP] unable to use vars in foreach [updated question]

2004-11-14 Thread Ryan King
;warning: Illegal offset type." > >Neverthought that my var was an object, just thought maybe a string. My >new question is, how can I convert this object to a string? Or get the >val of it See my post from about 1 minute ago. -ryan -- PHP General Mailing List (ht

Re: [PHP] explode and PATH_SEPARATOR

2004-11-15 Thread Ryan King
); ?> PATH_SEPARATOR is is a predefined constant, so you'll need to use something else, but you still need to put quotes around it: define('NOT_PATH_SEPARATOR', '/'); -ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] London - One Day Workshop "How to Build a Professional Database-Driven Website"

2004-11-15 Thread Ryan Carson
velop and test the site, deploy it effectively, promote it professionally and maintain it efficiently. Read more at www.carsonworkshops.com Hope to see you there, Ryan -- Ryan Carson | Carson Systems | www.carsonsystem

Re: [PHP] London - One Day Workshop "How to Build a Professional Database-Driven Website"

2004-11-15 Thread Ryan A
e > database, structure the code, develop and test the site, deploy it effectively, promote it professionally and maintain it > efficiently. > > Read more at www.carsonworkshops.com > > Hope to see you there, > Ryan > > ---

Re: [PHP] Date handling

2004-11-15 Thread Ryan King
On Nov 15, 2004, at 2:05 PM, Ryan wrote: Hello, I would like to find out the 'official' way to handle dates in PHP. There are many paths, choose the one best for you. :-) I am looking at the PEAR Date module and that seems to resolve these issues, but I would like to know if that is th

RE: [PHP] London - One Day Workshop "How to Build a Professional Database-Driven Website"

2004-11-16 Thread Ryan Carson
--Original Message- > From: Ryan A [mailto:[EMAIL PROTECTED] > Sent: 15 November 2004 22:37 > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED] > Subject: Re: [PHP] London - One Day Workshop "How to Build a > Professional Database-Driven Website" > > SPAM > >

Re: [PHP] isset opposite

2004-11-16 Thread Ryan King
t set (not just empty). !array_key_exists('yourkey', $_GET); -ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] mp3 parsing

2004-11-16 Thread Ryan King
Anyone out there have a way to read the header info out of an mp3 file? I'm able to parse out the id3 tags, but am having trouble finding a way to read the header info. The info I'm trying to get is the playtime and bitrate. thanks, ryan -- PHP General Mailing List (http://www.ph

[PHP] Re: mp3 parsing

2004-11-16 Thread Ryan King
On Nov 16, 2004, at 7:24 PM, Manuel Lemos wrote: Hello, On 11/16/2004 10:58 PM, Ryan King wrote: Anyone out there have a way to read the header info out of an mp3 file? I'm able to parse out the id3 tags, but am having trouble finding a way to read the header info. The info I'm trying

[PHP] mp3 cropping

2004-11-17 Thread Ryan King
Anyone out there know of a tool or technique for cropping an MP3 file (e.g., cutting the first 30 sec out into another file)? PHP would be nice, but not necessary. TIA, ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] mp3 cropping

2004-11-17 Thread Ryan King
On Nov 17, 2004, at 10:05 PM, Robby Russell wrote: On Wed, 2004-11-17 at 21:53 -0600, Ryan King wrote: Anyone out there know of a tool or technique for cropping an MP3 file (e.g., cutting the first 30 sec out into another file)? PHP would be nice, but not necessary. TIA, ryan a php question would

Re: [PHP] mp3 cropping

2004-11-17 Thread Ryan King
On Nov 17, 2004, at 10:05 PM, Robby Russell wrote: On Wed, 2004-11-17 at 21:53 -0600, Ryan King wrote: Anyone out there know of a tool or technique for cropping an MP3 file (e.g., cutting the first 30 sec out into another file)? PHP would be nice, but not necessary. TIA, ryan a php question would

Re: [PHP] require() in other directories?

2004-11-18 Thread Ryan King
Peter Lauri wrote: I get the Failed to open stream, no such file in directory If you were in one of these folders: /fr/ /eng/ And your classfile was namned classes.php and in the directory: /classes/ And you wanted to include the classfile, how would you write it? I would assume: require("/classes/

Re: [PHP] Tabs or Spaces?

2004-11-21 Thread Ryan King
-size WILL increase, and will include 3x more "space content" than it used to :) Who cares? -ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Tabs or Spaces?

2004-11-21 Thread Ryan King
ces instead. I find this very useful. -ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Tabs or Spaces?

2004-11-21 Thread Ryan King
On Nov 21, 2004, at 5:09 PM, Chris Shiflett wrote: --- Ryan King <[EMAIL PROTECTED]> wrote: However, when indenting with 3 spaces instead of a single tab, then your code-size WILL increase, and will include 3x more "space content" than it used to :) Who cares? Just to point out

Re: [PHP] Where to learn about these topics

2004-11-22 Thread Ryan King
real world, only the simplest, single-table cases... This is where stored procedures, triggers and update-able views become very handy. -ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Happy Thanksgiving

2004-11-25 Thread Ryan A
On 11/25/2004 5:28:47 PM, John Holmes ([EMAIL PROTECTED]) wrote: > John Nichel wrote: > > > Happy Turkey Day ladies and gents. > > > > > > Disclaimer : > > > If you are not in the US, or do not celebrate Thanksgiving, you are > > > still allowed to have a 'happy' day. ;) > > > > What's thi

Re: [PHP] Re: intalling pear:db

2004-11-25 Thread Ryan King
e it first anyhow?` How about trying a var_dump() on your DB object? For me, this is always the first step in trying to solve a mystery like this. Chances are, your DB object is really a PEAR_Error object because your failed to connect to your database. -ryan -- PHP General Mailing List (http://w

Re: [PHP] Grammar for PHP

2004-11-28 Thread Ryan King
n PHP itself, for instance) aren't quite what I'm looking for. Have you tried poking around in cvs.php.net? -ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] automatic responder

2004-11-28 Thread Ryan King
ly the php code shall include ECHOes to the timing Javascript code again...) This seems like a very weak re-implementation of cron. Seriously, this problem has been solved. -ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Very fresh to php

2004-11-30 Thread Ryan King
On Nov 30, 2004, at 10:45 PM, suneel wrote: Hi...guys, I'm a new bee to php. Could any one tell me that who is the father of php? take care guys, That would be Rasmus Lerdorf - http://php.net/history -ryan - http://theryanking.com/blog -- PHP General Mailing List (http://www.ph

[PHP] executeing another files code

2004-12-04 Thread Ryan A
# End file ## Question is: How can I get the file in my php script and fill in those variables then send the above email message. I know how to open a file via fread/file I now how to do the mail() etc... Just a little confused Thanks, Ryan -- No virus found in this outgoing message. Chec

Re: [PHP] Re: executeing another files code

2004-12-04 Thread Ryan A
Thanks guys, will report back if I run into any problems. Cheers, Ryan -- No virus found in this outgoing message. Checked by AVG Anti-Virus. Version: 7.0.289 / Virus Database: 265.4.5 - Release Date: 12/3/2004 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] executeing another files code

2004-12-04 Thread Ryan A
eally know how many will be passed...the site owner may decide he wants to use just 3 out of 4... eg: he may want to use just $name, $lastname and $submit_date instead of $name, $lastname, $submit_date and message Thanks, Ryan -- No virus found in this outgoing message. Checked by AVG Anti-

[PHP] Sessions in Frames...confused

2004-12-05 Thread Ryan A
inFrame or just in sideFrame or in all?? AGH! going nuts! The idea is if the session expires he should be present with the login page again...I am not doing anything special or complicated, just need to make sure he is who he says he is and give him access as long as his sesssion is good. Th

Re: [PHP] [ANN]Webyog releases FREE edition of SQLyog

2004-12-06 Thread Ryan A
Take this and shove it up where the sun does not shine (or up your 'yog') you filthy spammer. "The most popular GUI for MySQL"ever hear of PHPMyAdmin? Dumbass. On 12/6/2004 6:38:11 AM, Ritesh Nadhani ([EMAIL PROTECTED]) wrote: > Hello, > Webyog, the creator of SQLyog - the most popular GUI fo

Re: [PHP] Sessions in Frames...confused

2004-12-06 Thread Ryan A
ory a new session will only be started if one has not been started already. However there have been several discussions on this list in the past where this behaviour was not observed, and you may want to look these up in the archives. */ Thanks,will do. Cheers, Ryan -- No virus found in this outgoin

[PHP] Quick questions

2004-12-06 Thread Ryan A
example needs a $ symbol...) Thanks, Ryan -- No virus found in this outgoing message. Checked by AVG Anti-Virus. Version: 7.0.289 / Virus Database: 265.4.5 - Release Date: 12/3/2004 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Quick questions

2004-12-06 Thread Ryan A
s you know the > environment. Hey all, Thanks guys, I didnt know about any "short_open_tag" setting, I guess I'll just stick to my regular style coz i have no idea how the client/s php is setup plus if I move my own stuff to a different host it may not be so kind... Perfect answ

Re: [PHP] Problem with code

2004-12-07 Thread Ryan King
On Dec 5, 2004, at 9:05 PM, Richard Kurth wrote: I am having a problem with the code below it provides the first page with out any problem but when I select the next page it shows all the results from the first page and the results from the second page. It does the same thing on the third page also

[PHP] FCK Editor

2004-12-07 Thread Ryan A
Hey all, I came accross this free dhtml editor while browsing the net for popular projects, anybody else using FCK Editor? If yes, any problems? if no, heres the url 'case you want to check it out yourself: http://www.fckeditor.net/ Cheers, Ryan -- No virus found in this outgoing me

RE: [PHP] FCK Editor

2004-12-07 Thread Ryan A
Hey, Thanks for replying. Sounds good, have you used it yourself in any "real life" projects? or extended it in any way? Cheers, Ryan On 12/7/2004 7:29:07 PM, Vail, Warren ([EMAIL PROTECTED]) wrote: > There is another similar editor called htmlarea. > http://www.interactivetools

Re: [PHP] PEAR performance/overhead

2004-12-08 Thread Ryan King
parse those two packages for every request. However, if you are concerned with performance on your site you should be using a compiler so that this does not occur. A php compiler will easily improve your site's performance by an order of magnitude. -ryan -- http://theryanking.com/blog -- P

<    10   11   12   13   14   15   16   17   >