Re: [PHP] php.ini and command line

2008-06-23 Thread Wolf
? > > Regards > Marten Have you tried modifying your command line php calls with a -c as some of the documentation states? What have you tried (direct calls) and what has the output been? What do your error logs say? HTH, Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php.ini and command line

2008-06-23 Thread Wolf
=com.ubuntu%3Aen-US%3Aunofficial&hs=jaC&q=PHP%3A+php.ini+inheritance++cli&btnG=Search Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] array_diff()?

2008-06-25 Thread Wolf
nual array_diff is an actual function... http://us2.php.net/array So, where is your code that isn't working right? Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] array_diff()?

2008-06-25 Thread Wolf
TED]> wrote: I just hit tab and space at once and gmail just sent it ;) Well, I'm not reaching that size, hehe. Btw, PHP Version 5.2.6 On Wed, Jun 25, 2008 at 5:19 PM, Daniel Brown <[EMAIL PROTECTED]> wrote: On Wed, Jun 25, 2008 at 4:08 PM, Wolf <[EMAIL PROTECTED]> wrote: So,

Re: [PHP] fwrite() Append Files

2008-06-27 Thread Wolf
in a better direction. Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] fwrite() Append Files

2008-06-27 Thread Wolf
Wei, Alice J. wrote: Hi, Right now I enforced the file to read in through HTTP-Request and output it to a local file. Looks like this functioned perfectly after I used append functions after I attempted to write to the file! Thanks to everyone who contributed to this. Alice Are you mak

Re: [PHP] String to date

2008-06-30 Thread Wolf
t;"; > echo $newdate3 = date("Y-m-d",strtotime($olddate3)); > > markb You've given us no code you are actually using (we can all write dummy test code). IMO, you need to either change your input form to give you the results in a certain way (split up the M,D,Y o

Re: [PHP] Simple array problem

2008-07-01 Thread Wolf
existing matching array element, so I end up with this: $arr = array( array('blue', 4), array('orange', 7), array('green', 6)); Seems like it should be really simple but all the ways I can figure out to do it are too kludgey. What have you tried so fa

Re: [PHP] V4 Vs V5 Issue

2008-07-01 Thread Wolf
0 It's probably all JS, but if this is a PHP page that you've actually cut/pasted from, look at lines 67 and 68 and check to make sure you have a ; at the end of line 67. Or a ) or a } or some other closing brace that you could be using previously. Otherwise, check with a javascri

Re: [PHP] first e-shop

2008-07-05 Thread Wolf
Alain Roger wrote: Hi, I need to create an e-shop in PHP. this is for me the first time that i need to do that and i think the way how to approach such topic is different that creating a simple corporate web site. STFW: php: open source e-commerce http://www.google.com/search?q=php%3A+open+

Re: [PHP] Keeping POST values when paging

2008-07-07 Thread Wolf
ch recoding? I'm sure > there must be a neater way of doing it then simply passing 30 or so > variables using GET. > > Many thanks in advance. > Jon. Set session variables, have the script check the session variables. That'll keep the pages rolling, shouldn't take m

Re: [PHP] Question before I end up writing alot of extra code...

2008-07-07 Thread Wolf
u didn't post the offending code, I can't point out where you forgot the $ or to restate a variable. :-P Have you tried echoing the mysql query to verify it is correct? Have you checked the logs? Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Question before I end up writing alot of extra code...

2008-07-07 Thread Wolf
Oh, and make sure you bottom post too so you actually follow everything! ;) mike <[EMAIL PROTECTED]> wrote: > doh - and mysql_escape_string or equivalent. > > > > On 7/7/08, mike <[EMAIL PROTECTED]> wrote: > > please oh please also run that through filter_input() before throwing > > a $_

Re: [PHP] phpmyadmin

2008-07-10 Thread Wolf
ing on how you are setting this up, you could theoretically put a separate phpmyadmin folder in each of the web folders of the users who use your services. Have you RTFM and set it up as the documentation stated and then tested it by logging in as the new user? http://www.phpmyadmin.net/home_p

Re: [PHP] apache/vhosts wuestion...

2008-07-11 Thread Wolf
ith no issues using the Apache documentation. Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Most popular per month

2008-07-11 Thread Wolf
archives of this list. HTH, Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Most popular per month

2008-07-12 Thread Wolf
.. . $perc50=(img50 int)/$total; You can do it per day, per month, per year, per 28 days, per PMS cycle, per anything you want provided you have the data to do it. :) this is the part where i am a bit confused actually, can you give me one or two examples and i'll work from there? What y

Re: [PHP] Freelance PHP development in India

2008-07-13 Thread Wolf
Denis L. Menezes wrote: Dear friends. I am looking for freelance web developers in India. Can contact me? Thanks Denis Why just in India? There are a number of us available via the world. Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

RE: [PHP] Math Weirdness

2008-07-14 Thread Wolf
> becomes the beginning balance for the day we are beginning. > > Isn't it possible then that your data is out of synch between the > current balance and the previous day's ending balance? > > Cheers, > Rob. See!!! I told you he was skimming the profits! Better

RE: [PHP] mkdir permission errors

2008-07-14 Thread Wolf
logged in as root. > Is this anything with firewalls? > > Thanks for your help. Alice, $whoami=system('whoami'); echo $whoami; $pwd=system('pwd'); echo $pwd; That should tell you what ID you are and the path you are in. Make sure that the path you are in has the correct p

RE: [PHP] mkdir permission errors

2008-07-14 Thread Wolf
Alice: Bottom post like everyone else... "Wei wrote: > Hi, Wolf: > > Like I guessed, I am still defined as the root user. > > [EMAIL PROTECTED] html]# php test.php > root > root/var/www/html > /var/www/html > > This is the output I have got from

Re: [PHP] mkdir permission errors

2008-07-15 Thread Wolf
atches the pristine installed one. Once you have done that, you should be OK. Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] mkdir permission errors

2008-07-15 Thread Wolf
c principles, but if not I have severe doubts in anyone graduating with an MIS from Indiana University. Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] CONFIGURE IONCUBE LOADER WITH SELINUX

2008-07-17 Thread Wolf
(httpd_t). > > & apache error log says permission denied. > > Thanks > Kapil Sure we do! It's even in the manual on how to fix it! Ohhh, and Google has info on it too! RTFM and STFW and you should be fine. Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Help with an error...

2008-07-24 Thread Wolf
mailq -> this should display if you have any mail queued up to send on the server and possibly if it errored out 3. check your php error log. If you don't have one, modify your php.ini to create one, restart webserver if running via that, CLI should read it on the fly. Wolf -- PH

Re: [PHP] Help with an error...

2008-07-24 Thread Wolf
Here is the updated code Notice!! $message doesn't contain any PHP code within it $query only has a single ; within the whole line, right at the end of the "; to complete the PHP assignment string. Placing one inside it will barf the script typically. $headers are all concactenated

Re: [PHP] Code works alone but not with other code.

2008-07-25 Thread Wolf
and, have you tried doing the following: 1. Putting in die statements 2. Verified the tables exist and have data in MySQL 3. Checked the PHP error log 4. Checked the MySQL error log Just guessing I'd say your data was empty, but without more information, it's a pretty big shot in the dark. Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Code beautifier

2008-07-25 Thread Wolf
disturbing? > Something about "anal" and "up" that doesn't sound good. :-) > > tedd So disturbing that it would be nice if I could add an appropriate image to it... ;) Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Code beautifier

2008-07-25 Thread Wolf
arted a sentence > with "but." > > Reader's Digest-standard English aside, Tedd, Freud might have > been right with you. ;-P True, but "but" and "butt" are two very distinct words... ;) I know Dan, it's that grammar thing.. Even using the Queen's English makes it a "tush for the push". ;) Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] phpguru.org back up

2008-08-13 Thread Wolf
Richard Heyes <[EMAIL PROTECTED]> wrote: > Hi, > > You'll be pleased to know (I'm sure) that phpguru.org is back up and > working (for the most part I would imagine). Glad to hear it! So, which backup solution are you using? Or should I say which 12 backup s

Re: [PHP] phpguru.org back up

2008-08-13 Thread Wolf
Richard Heyes <[EMAIL PROTECTED]> wrote: > > So, which backup solution are you using? Or should I say which 12 backup > > solutions? ;) > > Lol. Not that sophisticated actually, trusty old tar and gzip, along > with regular downloads to my desktop so that they're in two locations. Befor

RE: [PHP] Semi-ADVERT, not really spam, sorry for it

2008-08-19 Thread Wolf
Jay Blanchard <[EMAIL PROTECTED]> wrote: > [snip] > PS - for those that know, I'm back ... with a vengeance. > [/snip] > > That explains why I didn't sleep well last night. :) > You kidding, I don't think any of us regulars did... Glad to see you back Jochem. -- PHP General Mailing Lis

Re: [PHP] Semi-ADVERT, not really spam, sorry for it

2008-08-19 Thread Wolf
tedd <[EMAIL PROTECTED]> wrote: > I've freelanced longer than most these guys have been alive. > > Cheers, > > tedd See, I knew you were one of the wise ancient ones! Kluthluu!! ;) Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] Developing a game using Ming

2008-08-20 Thread Wolf
o somethings using Ming, a PHP extension. You know, I STFW and came up with some pretty good information for your questions... http://www.google.com/search?q=php%3A+ming&ie=utf-8&oe=utf-8&aq=t&rls=com.ubuntu:en-US:unofficial&client=firefox-a So, where is your code that you have

Re: [PHP] RE: Sale 79% OFF !!!

2008-08-21 Thread Wolf
Because there is 1 or more out there who don't know any better and get sucked in. And when you look at it as being able to use a name book or dictionary (readily available mind you) along with a list of domains.Once you add them together, the resources needed for sending the emails is tiny.

Re: [PHP] Ejecutar comando con php con otro usuario.

2008-08-21 Thread Wolf
CanihoJR <[EMAIL PROTECTED]> wrote: > Como puedo ejecutar un comando de sistema con otro usuario que no sea > www-data??? si realizo un exec("sh miscript.sh"); se ejecuta con www-data y > me gustaria ejecutarlo con mi usuario. (linux) > > Gracias d antemano

Re: [PHP] newbie Q: How to say, "if the fileNAME is equal to...", or better yet, "if the fileNAME ends with '.jpg'"?

2008-08-25 Thread Wolf
contents of the email > -- far more than what I need/want. Really, they still make Eudora? Or is this an old copy on the MacIntosh IIe that you are running. ;) Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Assign things to users

2008-08-26 Thread Wolf
total count setup, meaning if John has the AssignTolken=1 then he'll get the next unassigned one. HOWEVER if John has 3000 quotes and Jim only has 1500, then you really want to assign Jim the next quote as it would be done sooner. You might also want to track who is in the office or on va

Re: [PHP] Sending out mass emails

2008-09-04 Thread Wolf
he mail server so they never see it. Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Google Chrome

2008-09-04 Thread Wolf
> You can at least track memory + cpu usage through the Task Manager > (Ctrl-Alt-Del + T on most distros). In the Task Manager, I also noticed > that GoogleUpdate.exe is running even when Chrome.exe is not. This made > me a bit curious, so I went into msconfig (the Microsoft GUI utility for > modi

Re: [PHP] unset($_GET['i'])

2008-09-04 Thread Wolf
doesn't unsets ? Because you get a new i from the URL, hence the GET What you can do is set a session variable when you GET the first i, then just check and if the session variable is present, you don't process the next time you GET i. Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Header() - POST

2008-09-05 Thread Wolf
rect to the processing page, then use the processing page to pull the session information and make sure it came from the correct page. HTH, Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Sending username/password

2008-09-05 Thread Wolf
Jay Moore wrote: > Greetings list! > > Is it possible (and if so, how) to send username and password > information to a website with PHP? > In one word... CURL -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] translations for PHP app

2008-09-08 Thread Wolf
h or the Google Translator? The last time I tried the google one, it did a whole page on the fly and seemed to be pretty good at it. Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] CSV output.

2008-09-08 Thread Wolf
POST YOUR Code POST your CSV output Without Code and without Output, you don't really show the problem. Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] tedd's back from vacation

2008-09-10 Thread Wolf
eally, Beaver Island. :-) > > > > No phones? No lights? No motorcars? Not a single luxury!?!? He said Beaver Island, so there were lots of DAMs to check out and sites to see! :-D Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Anything like XAMPP?

2008-09-10 Thread Wolf
iated! > > Cheers! Reformat your HDD and go with Ubuntu or RedHat Otherwise, take the time to get the individual packages and install them all by hand, this way when something breaks, you know what piece(s) is(are) busted and you can fix them with relative ease. Wolf -- PHP General Mai

Re: [PHP] tedd's back from vacation

2008-09-10 Thread Wolf
Jason Pruim <[EMAIL PROTECTED]> wrote: > > On Sep 10, 2008, at 1:10 PM, Jochem Maas wrote: > > > Jay Blanchard schreef: > >> [snip] > >> OK, this is getting ridiculous. I think we need a new PHP list. > >> Something like [EMAIL PROTECTED] sounds about right. > >> [/snip] > >> I knew jealo

Re: [PHP] The Best PHP Editor.

2008-09-10 Thread Wolf
jmatt wrote: > Hi, I was using NVU to edit PHP but when I upload the index.php file back > there will always be a slight error in disorientation. > Example using NVU I edited the text just a bit then bam..The webpage became > really funny > > What is the best to edit my PHP file? > Thanks Vi, ned

Re: [PHP] Why MS Won't Retire Browsers -- was: Interntet Explorer 8 beater 2

2008-09-11 Thread Wolf
ser, they don't make > any money. If you upgrade your OS, they do. My last upgrade was from XP to Ubuntu. :) And believe it or not, if you want to test your test on Ubuntu there is an IE for it or you can just WINE things. :) Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Securing pages & sections

2008-09-11 Thread Wolf
. You use the sessions and check to see if active. You have a temp table that runs while people are "shopping" and the quotes/orders are saved with the date,time,userID and tied in the DB to the user so that I easily get a set of links to them. HTH, Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Mysqli issue

2008-09-11 Thread Wolf
hough > > Can anyone see my stupid mistake? :) OK, you asked for it... You aren't checking your stuff before dumping it. None of it... So, you should be taking the post variables and slapping them into a checker. Then, your statement should be more along the lines of: mysqli_st

Re: [PHP] Mysqli issue

2008-09-11 Thread Wolf
; > txtZip','$rdoCoffee','$rdoTime','$areaPlans') ; > Double DOH here... I was looking at my MySQL not MySQLi stuff, and there is some differences... Must be the cold drugs/ '$var' definitely should have been $var since you want the contents, but according to the php site, the prepare is for the query, so my guess is you'll want the query put in the line instead of what looks to be the pieces of the insert? http://us2.php.net/manual/en/mysqli-stmt.prepare.php mysqli_stmt_prepare($stmt, 'SELECT District FROM City WHERE Name=?') Of course, you could do the Query="insert into TABLE values($var,$var.)"; mysqli_stmt_prepare($stmt, $Query); I'm gonna go drink more cold drugs now... Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] ftp_pasv - question

2008-09-17 Thread Wolf
somebody can help me ! > > by jogi Sure, RTFM as it has examples right there! http://us2.php.net/ftp_pasv HTH, Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Passing variables between pages

2008-09-19 Thread Wolf
gin to the server, store it in a DB table that they are logged in, then if the session ID goes away, then you log them out and push them to the login page. But why go around your elbow to blow your nose? Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: h

Re: [PHP] SESSIONS vs. MySQL

2008-09-19 Thread Wolf
x27;t see the light of day. Anything slower then 2 seconds without any interaction back to the users will be short-lived Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Wanted PHP Developers LogicManse

2008-09-30 Thread Wolf
Nathan Rixham <[EMAIL PROTECTED]> wrote: > Jim Lucas wrote: > > Nathan Rixham wrote: > >> Jim Lucas wrote: > >>> Nathan Rixham wrote: > Richard Heyes wrote: > >> Thanks for quoting the whole message then! :P > > Maybe he just wanted to make sure you got it... I just wish you g

Re: [PHP] Wanted PHP Developers LogicManse

2008-09-30 Thread Wolf
*Lightbulb*... I could make money *snatches lightbulb down and replaces it with burned out one* Must resist fist of death :) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Robert Cummings

2008-09-30 Thread Wolf
Daniel Brown <[EMAIL PROTECTED]> wrote: > All: > > What was pointed as a passing mention in one thread I thought was > worth note in a thread of its own. As quoted by Rob: > > > BTW, while we're off topic... my wife delivered our third child (second > > boy) 3 minutes after midnigh

[PHP] Mailing List fun

2008-10-01 Thread Wolf
y are unable to restore the email accounts until you drive home, reboot the router, call and WAIT ON HOLD for their customer service reps and then another 10 minutes later get the email accounts restored. Sorry for the bounces everyone. Wolf Of course, after I sent that, I got an imme

Re: [PHP] AJAX and PHP

2008-10-06 Thread Wolf
led. But some of us don't except for specific sites due to ads being swfs as well. Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Login

2008-10-08 Thread Wolf
to run malicious code on my site or find a hidden piece. Then a redirect to ratemypoo seems like a good idea to me! Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Project Tracking / Charting Tool OT

2008-10-09 Thread Wolf
o a single project are reflected in the larger project > tracking entity. > > I have looked at OpenProj, MS Project, and some others and none offer > this functionality. Have you checked out Tutos? I played with it a few years ago, not sure how it works these days. Wolf --

Re: [PHP] Login

2008-10-09 Thread Wolf
Shawn McKenzie <[EMAIL PROTECTED]> wrote: > Richard Heyes wrote: > >> Unless that was the business you were in ;) > > > > True enough, but what kind of business would that be...? :-) > > > > Rating poo, of course... It's a crappy job, but someone's got to do it... ;) -- PHP General Mai

Re: [PHP] New to PHP

2008-10-13 Thread Wolf
google search plug-in running is to use "php: " where is what you are looking to do. By prefacing the search with php: google tends to give greater responses since it looks for PHP first and then the question. HTH. Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] New to PHP

2008-10-13 Thread Wolf
re Networks > Internal Developer > http://www.onshore.com > > > > Wolf wrote: > > By Bottom Posting (common when on a mailing list or NG) it gives greater > > context as you read through the previous posts and by the time of getting > > to where the new respons

Re: [PHP] New to PHP

2008-10-13 Thread Wolf
gt; quote and remove any previous comment that is not relevant to your > post. > > This is also addressed in the "Netiquette" RFC (1855). See, and when you reply, make sure to cut the 10 lines of dan's sig file off. Well said Dan! :) Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] New to this group....a continuation

2008-10-13 Thread Wolf
a first Can I change this? Nope, you post and pretty much people will respond to the list and sometimes include the other posters to that message. If you are just going to read this group through the web or another interface, set up your email to filter the messages. HTH, Wolf -- PHP General

Re: [PHP] Re: 1 last error to fix before the application is done!

2008-10-14 Thread Wolf
So instead of something like this: if ($employee_login == "true" || $employee_loggin == "break") You could do: if ($employee_login != "off") Don't worry, it should be quick, we've been chumming the water. ;) HTH, Wolf -- PHP General Mailing List (http:

Re: [PHP] Microsoft China to Punish private windows users

2008-10-15 Thread Wolf
> > This is extremely off-topic. Please don't abuse this list in an attempt > > to drive traffic to your blog. > > > > -Stut > > > > It *is* powered by PHP, Stut. :P > True, but that's the ONLY PHP thing about it... OK, and the URL has PHP

Re: [PHP] Politics

2008-10-21 Thread Wolf
Nathan Rixham <[EMAIL PROTECTED]> wrote: > Robert Cummings wrote: > > On Tue, 2008-10-21 at 08:01 -0700, Jim Lucas wrote: > >> Chrome wrote: > -Original Message- > From: Amy [mailto:[EMAIL PROTECTED] > Sent: 21 October 2008 11:58 > To: php-general@lists.php.net >

Re: [PHP] Mailing lists

2008-10-29 Thread Wolf
Richard Heyes <[EMAIL PROTECTED]> wrote: > Hi, > > Anyone know of a good (as opposed to a bad) mailing list manager, > other than freelists.org (which I can't seem to get working). > > Thanks. What's wrong with Mailman? Wolf -- PHP General Mai

Re: [PHP] Mailing lists

2008-10-30 Thread Wolf
> Ok, other then mailman, anyone know of a free (other than > freelists.org) hosted discussion list management service? > I take it that Google Groups is out as well? Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] basic php question...

2008-11-04 Thread Wolf
gt;> > >> foo.php doesn't have any display function, just the logic > >> > >> thoughts/sample php pages/psuedo code chunks... Where's your code breaking? what have you written already that has failed to work right? Sounds like you aren't even usin

Re: [PHP] basic php question...

2008-11-04 Thread Wolf
Richard Heyes <[EMAIL PROTECTED]> wrote: > > users who browse without Javascript enabled, > > Heretics! lynx works great! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] basic php question...

2008-11-04 Thread Wolf
Richard Heyes <[EMAIL PROTECTED]> wrote: > > users who browse without Javascript enabled, > > Heretics! Also remember, all US based sites have to be in compliance with ADA as well, otherwise you'll spend a lot of time re-writing your stuff if it doesn't work for someone to use a disabili

RE: [PHP] basic php question...

2008-11-04 Thread Wolf
"Boyd wrote: > > -Original Message- > > From: Wolf [mailto:[EMAIL PROTECTED] > > Sent: Tuesday, November 04, 2008 2:30 PM > > To: php-general@lists.php.net > > Subject: Re: [PHP] basic php question... > > > > > > Richa

Re: [PHP] removing text from a string

2008-11-05 Thread Wolf
t; //Do something to remove the "1. " > >>> //print the modified line and \n > >>> } > >>> fclose($fp); > >>> } > >>> ?> > >>> > >> I'd go with a regular expression any day for something like this. *groan* See, no regex needed and no matter the size of the '##. ' it will always find the first " " and then chop it from there to the end, then you trim it up and you get the text. Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] I have a problem with dynamicly updating files...

2008-11-06 Thread Wolf
one','$mobile','$fax','$email','$web')"; > mysql_query($query); Your query looks fine. You need to look at the error codes you receive. change: mysql_query($query); TO: mysql_query($query) or die(mysql_error()); The resulting error message shou

Re: [PHP] PHP - Web/list Question...

2008-11-08 Thread Wolf
ome of that with ajax as well, but if you want to break up a 200 item list, you are looking at a database to store the info in the most efficient manner possible. You could also do it with sessions, but if they get stuck and need to come back, then if they had to login their session might be d

RE: [PHP] It's Sunday, and I'm bored...

2008-11-09 Thread Wolf
Ni, he works for ACORN... Oh wait, that would have vote early, vote often... -Original Message- From: Jay Blanchard <[EMAIL PROTECTED]> Sent: Sunday, November 09, 2008 12:33 PM To: Ólafur Waage <[EMAIL PROTECTED]>; php-general@lists.php.net Subject: RE: [PHP] It's Sunday, and I'm bored...

Re: [PHP] PHP - Web/list Question...

2008-11-09 Thread Wolf
> Accumulate them in the session. When done, and before final action you > could let them view a summary of selected items and allow deletion of > any entries they don't want. You session purest! :-P -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/u

[PHP] Page Update Script

2005-11-13 Thread Wolf
Anyone know of a script out there already which will read directories on a site and display a list of files updated within the last month? Just thought I would ask before I invented the wheel! R -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.ph

[PHP] What is

2005-11-25 Thread Wolf
I have some scripts that I downloaded and am trying to make compliant with my server. They have http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Someone please help me with this PHP script.

2005-12-17 Thread Wolf
What is it doing, or not doing? Try changing the I do not know why this isn't working, but it would be very helpful if > someone looked over it. > > $defaultpage = "http://lom.game-host.org/uploads/erik/";; > > If($page == NULL) { > $page = "one"; > } > > if($page == "one") { > Echo "

[PHP] Parsing a large file

2006-01-13 Thread Wolf
I have large log files from a web server (about a gig in size) and need to parse each line looking for a string, and when encountered push that line to a new file. I was thinking I could have PHP read in the whole file, but thinking it could be a major pain since I have about 20 log files to read

Re: [PHP] Parsing a large file

2006-01-13 Thread Wolf
Windows server, though I may dump it to linux to get my smaller file, however not sure my admin would like that. :) Albert wrote: > Wolf wrote: > >>I have large log files from a web server (about a gig in size) and need >>to parse each line looking for a string, and when enc

Re: [PHP] Re: Greetings

2006-01-13 Thread Wolf
Stut wrote: > Mark wrote: > OK, here's the deal. Even if every email address was randomized (stupid) it still does not sole the issue of someone sending it to lists. Even randomized "anonymous" email addresses wind up going back to you, however it puts more load on a server in the process. RT

[PHP] Looking for advice on a non-profit site development

2003-01-13 Thread White Wolf
d I start, what should I use, please let me know! Ps: I am not looking for a way of not knowing PHP and use it: but I am looking for a way to create a site ASAP, since I believe that what I plan to do serves a need. -- White Wolf aka Attila @ LMF ICQ#: 26070936 http://wwp.icq.com/26070936 If I&#x

Re: [PHP] Found a PHP bug!!!!!!!!!

2003-01-27 Thread White Wolf
"Scott Fletcher" wrote: > Double and Float are not exactly the same thing. > > Double is ---> 11.123 > Float is --> .00238823993 I am absolutely new to PHP but what is above (since PHP seems to take most of its low-level terminology from C) is a fixed point number and the next is a floating po

Re: [PHP] Found a PHP bug!!!!!!!!!

2003-01-27 Thread White Wolf
"Scott Fletcher": > Okay, correction... > > Double --> 11.1237 > Float --> 0. > > Cheers! It's the way it work in C Programming... Double won't be as long > or as infinite as the floating point. Absolutely wrong (if you would be in a C newsgrou

[PHP] Re: GNU Readline 4 Win32

2003-01-29 Thread White Wolf
"Ojmyster" wrote: > Hi, > Is there any way I can get the 'GNU Readline' libruary on my Windows 2000 > installation of PHP4? As far as I can see its only available for *NIX OSs > and BSD. Is is available on win32? http://ftp.unicamp.br/pub/gnu-win32/release/readline/ 3rd hit on Google... WW --

[PHP] Safe mode and directory permission

2002-09-23 Thread Rudolf Wolf
2.0.40 and PHP 4.2.3, the same problem on Apache 2.0.39 and PHP 4.2.2. Do you know, where the problem is? Thanks, Rudolf Wolf. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Please help - Safe mode and directory permission

2002-10-03 Thread Rudolf Wolf
2.0.40 and PHP 4.2.3, the same problem on Apache 2.0.39 and PHP 4.2.2. Do you know, where the problem is? Thanks, Rudolf Wolf. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Function is_readable doesn't work correctly

2002-10-08 Thread Rudolf Wolf
clude the file owner.php to browser. I think, that it means the file is readable. Thanks Rudolf Wolf. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Passing Values to an image script

2002-06-05 Thread Anzak Wolf
I'm stuck on an odd problem with sending values between scripts. Take the following example. $h=20; $w=80; print ""; Now this is a much watered down version of what I'm doing, but the idea is the same. I don't want to put the values I'm passing to the image in the html code to be passed wit

Re: [PHP] Passing Values to an image script

2002-06-05 Thread Anzak Wolf
>On Thu, 6 Jun 2002, Anzak Wolf wrote: > > $h=20; > > $w=80; > > print ""; > > > > Now this is a much watered down version of what I'm doing, but the idea >is > > the same. I don't want to put the values I'm passing to the im

[PHP] POST/GET var problem

2002-06-12 Thread Anzak Wolf
take the following html code Now when that is created by a php script the value that is passed back is the following. myimg.x="Click loc X"&myimg.y="Click loc y" I could leave the name attribute off and I get an x/y value set that I can use for some math functions I have. The problem is

Re: [PHP] Gradients in PHP & GD

2002-06-26 Thread Anzak Wolf
I wrote a Color gradient in GD it is actually very simple. Though you need GD 2.x and mine is designed to go from left to right changing the color to the center line then changing it back to the edge. If your interested let me know and I'll send you a code snippet. Though I would like to see

[PHP] Gradients using GD

2002-06-26 Thread Anzak Wolf
After much pain and suffering I figured out how to do dual color Gradients using GD in an oval. While it is not as clean as I'd like it works and can be tweaked as needed. In the process I also found some very cool Gradient effects that could be used as well. I'm currently working on writing

<    1   2   3   4   5   >