Re: [PHP] Friday's Question

2013-09-20 Thread Curtis Maurand
On 9/20/2013 1:24 PM, Joshua Kehn wrote: On Sep 20, 2013, at 1:23 PM, Larry Martell wrote: On Fri, Sep 20, 2013 at 11:16 AM, Joshua Kehn wrote: I'm in my 20's and rarely, if ever, use a dedicated mouse. I've transitioned to having all my workstations be laptops of one sort or another and th

Re: [PHP] Off the wall - sub-domain question

2013-08-22 Thread Curtis Maurand
Is the subdomain also in a subfolder of the main domain? Jim Giner wrote: > I have a main domain (of course) and a sub domain. I'm really trying to > steer my personal stuff away from the main one and have focused all of > my php development to the sub-domain. > > Lately I noticed that google

Re: [PHP] Re: PHP vs JAVA

2013-08-21 Thread Curtis Maurand
Sebastian Krebs wrote: > 2013/8/21 Curtis Maurand > >> >> >> >> Sorry in advance for the top post. >> >> Use the right tool for >> the Job. I've use Java, C# and PHP. >> >> 1. I hate the >> Perl-like object calls in PHP.

Re: [PHP] Re: PHP vs JAVA

2013-08-21 Thread Curtis Maurand
debugging.  I've used PHPEdit, Zend, Bluefish, Eclipse and a couple others.  Bluefish works better on Linux than it does on Windows. Use the tool for the job at hand.  Just my $0.02 worth. cheers, Curtis Tim Streater wrote: > On 20 Aug 2013 at 23:59, PHP List wrote: > >> While

Re: [PHP] Mysqli Extension

2013-08-19 Thread Curtis Maurand
Matijn Woudt wrote: > On Mon, Aug 19, 2013 at 9:40 PM, Ashley Sheridan > wrote: > >> >> >> Matijn Woudt wrote: >> >On Mon, Aug 19, 2013 at 8:55 PM, Ashley Sheridan >> >wrote: >> > >> >> >> >> >> >&g

Re: [PHP] Mysqli Extension

2013-08-19 Thread Curtis Maurand
Ethan Rosenberg wrote: > Dear List - > > My mysqli extension seems to have gone away. > > $host = 'localhost'; > $user = 'root'; > $password = 'SdR3908'; > echo "hello2"; > var_dump(function_exists('mysqli_connect'));// this returns boo(false) > $db = 'Store'; > $cxn = mysqli_connect($host,$use

Re: [PHP] Last Record INSERT

2013-06-26 Thread Curtis Maurand
Look up using the mysqli libraries. This was about a 30 second php.net search. http://us3.php.net/manual/en/mysqli.insert-id.php Cheers, Curtis On 6/26/2013 1:33 PM, Tedd Sperling wrote: Hi gang: What's the most-current way to get the ID of the last recorded inserted in a dat

[PHP] filesize question

2013-05-07 Thread Curtis Maurand
Hello, I'm feeding a filename to a php script on the command line (command line program). I run the following against it: $inputline = fread($inputfile, filesize($argv[1])); I'm getting an error complaining that the second parameter can't be '0' any ideas? t

Re: [PHP] PHP context editor

2013-03-15 Thread curtis
Sent from my Galaxy S®III Original message From: Ashley Sheridan Date: 03/15/2013 5:03 PM (GMT-05:00) To: Sebastian Krebs Cc: gei...@b1-systems.de,georg ,PHP General List Subject: Re: [PHP] PHP context editor On Fri, 2013-03-15 at 12:05 +0100, Sebastian Krebs wrot

Re: [PHP] PHP context editor

2013-03-15 Thread Curtis Maurand
I've been playing with bluefish as of late. The openoffice folks have taken over that project. tamouse mailing lists wrote: >On Fri, Mar 15, 2013 at 4:03 PM, Ashley Sheridan > wrote: >> On Fri, 2013-03-15 at 12:05 +0100, Sebastian Krebs wrote: >> >>> 2013/3/15 Karim Geiger >>> >>> > Hi Geor

Re: [PHP] Re: Populate input from another form

2013-03-09 Thread Curtis Maurand
No, but javascript can. Jim Giner wrote: >On 3/8/2013 3:43 PM, John Taylor-Johnston wrote: >> Scratch that, IE does not like form elements outside the !!?? >:,( >> I can't a form within a form either, unless ... I float a div??. >> >> John Taylor-Johnston wrote: >>> I have a form >>> >>> >> ta

Re: [PHP] Stupid question

2013-02-27 Thread Curtis Maurand
website are incorrect and should be fixed. Thanks for the lesson. --Curtis -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Stupid question

2013-02-26 Thread Curtis Maurand
On 2/26/2013 4:33 PM, Daniel Brown wrote: On Tue, Feb 26, 2013 at 4:27 PM, Curtis Maurand wrote: I have the following: $dsn = "mysqli://$username:$password@$hostname2/$database"; $options = array( 'debug' => 3, 'result_buffering' => false,

[PHP] Stupid question

2013-02-26 Thread Curtis Maurand
, $_u_id); $_getSubTotal += $_pdetail->_subTotal; $_counter++; } } I'm getting: Call to undefined method MDB2_Error::fetchrow() anyone have any ideas? Can I not pass a database handle to a function? Thanks, Curtis -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Nested loopa

2012-12-27 Thread Curtis Maurand
A while loop is a blocking call. Be careful with them. --Curtis Tedd Sperling wrote: >On Dec 26, 2012, at 10:09 AM, Jim Giner >wrote: > >> While I fully understand the purpose of the do...while construct, I >just never get used to seeing it used. (in other langs I had to de

Re: [PHP] Re: preg_replace question

2012-12-12 Thread Curtis Maurand
On 12/12/2012 3:47 PM, Maciek Sokolewicz wrote: On 12-12-2012 21:10, Curtis Maurand wrote: On 12/12/2012 12:00 PM, Maciek Sokolewicz wrote: On 12-12-2012 17:11, Curtis Maurand wrote: I have several poisoned .js files on a server. I can use find to recursively find them and then use

[PHP] Re: preg_replace question

2012-12-12 Thread Curtis Maurand
On 12/12/2012 12:00 PM, Maciek Sokolewicz wrote: On 12-12-2012 17:11, Curtis Maurand wrote: I have several poisoned .js files on a server. I can use find to recursively find them and then use preg_replace to replace the string. However the string is filled with single quotes, semi-colons and a

[PHP] preg_replace question

2012-12-12 Thread Curtis Maurand
I have several poisoned .js files on a server. I can use find to recursively find them and then use preg_replace to replace the string. However the string is filled with single quotes, semi-colons and a lot of other special characters. Will preg_relace(escapeshellarg($String),$replacement) w

Re: [PHP] Re: How to limit source IP in PHP

2012-09-14 Thread Curtis Maurand
On 9/14/2012 7:20 AM, Ian wrote: On 12/09/2012 14:53, Tonix (Antonio Nati) wrote: Is there a way to force a PHP script to bind to a prefixed IP? Actually, while you can assign more IPs to Apache for listening, assigning domains to specific IPs, it looks like any PHP script can freely choose whi

Re: [PHP] OT (maybe not): Drupal vs WordPress

2012-08-19 Thread Curtis Maurand
Joomla. Michael Shadle wrote: > I suggest Wordpress only for blogs or "brochureware" or basic page based > sites. It has security flaws often and I've had many sites hacked and > servers compromised because of it. > > Out of the box it is very easy to use and polished and has a lot of themes >

Re: [PHP] How to write and read serial or parallel port

2012-07-26 Thread Curtis Maurand
Lester Caine wrote: > viper wrote: >> is it possible to write and read data on a COM or LPT port? >> is there any function or class in PHP? >> >> anyone has already done something similar? > > Talking in and out of the serial port is not too difficult but is OS > dependent, > so what are you wan

Re: [PHP] How to write and read serial or parallel port

2012-07-26 Thread Curtis Maurand
You read and write to it like any other file.  Calls on windows will be slightly different. $PRINTERPORT = fopen("/dev/lpt1", "r+"); $PRINTERPORT = fopen("lpt1", "r+"); Cheers, Curtis viper wrote: > hi all! > > is it possible to write a

Re: [PHP] SOAP and Php question about authentication

2012-07-17 Thread Curtis Maurand
o the authentication correctly. --Curtis Matijn Woudt wrote: > Op 17 jul. 2012 05:23 schreef "James Newman" > > het volgende: >> >> I'm having a few authentication issues and I'm not sure if it's my code >> or >> the web service I'm con

Re: [PHP] Searching IDE.

2012-06-13 Thread Curtis Maurand
pse+PDT. >> What is your opinion? I've seen these articles posted at infoworld. http://www.infoworld.com/d/application-development/review-2-php-tools-rise-above-the-rest-189085 http://www.infoworld.com/d/developer-world/infoworld-review-eight-php-power-tools-737 Cheers, Curtis

Re: [PHP] Re: updating code asap to multiple domains, windows to unix, with source control software (was: Re: [PHP] including PHP code from another server..)

2012-03-27 Thread Curtis Maurand
rene7705 wrote: > On Tue, Mar 27, 2012 at 1:21 PM, Peter Ford wrote: > >> On 27/03/12 12:13, rene7705 wrote: >> >>> hey, I just read the rsync man page for the first time, and while it >>> sure >>> looks simple enough for my taste, wouldn't updating multiple remote >>> domains >>> be like a who

Re: [PHP] including PHP code from another server..

2012-03-26 Thread Curtis Maurand
rsync is your friend. --C Stuart Dallas wrote: > On 26 Mar 2012, at 14:53, rene7705 wrote: > >> My last thread got derailed into a javascript and even photoshop >> discussion, and while I can't blame myself for that really, this time I >> would like to bring a pure PHP issue to your scrutiny.

Re: [PHP] how to execute Exe file in system

2012-02-17 Thread Curtis Maurand
"C:\/Program\ Files\\..." --C Negin Nickparsa wrote: > I can't move Gams because it has many dll files which should be in there. > gams.exe should be execute in that path file in program Files > one time I tried to do it and when It shows me missing files I copy pasted > many files but It need

Re: [PHP] php.net problems?

2012-01-23 Thread Curtis Maurand
Xavier Del Castillo wrote: > On 01/23/2012 10:28 AM, Donovan Brooke wrote: >> Hi, is anyone else having problems with PHP.net today? >> >> Donovan >> >> > Working fine from here. Do a traceroute to the site, it might an ISP > related problem. > > It came right up for me. --Curtis

Re: [PHP] Numeric help needed

2012-01-15 Thread Curtis Maurand
On 1/15/2012 9:24 PM, Robert Williams wrote: On Jan 15, 2012, at 19:00, "Simon J Welsh"mailto:si...@welsh.co.nz>> wrote: On 16/01/2012, at 2:48 PM, Chris Payne wrote: "If the loan amount is $68500.00, the insurace will be based on $69000.00 as the amount is always rounded up to the next $100

Re: [PHP] Numeric help needed

2012-01-15 Thread Curtis Maurand
On 1/15/2012 8:48 PM, Chris Payne wrote: Hi Jason, I've tried lots of different things, including: echo "" . round(68500, 1000) . " ROUNDED"; thinking that might be it, but i'm stumped This is the example I was given (And have to go by): "If the loan amount is $68500.00, the insurace will

Re: RE: RE: [PHP] passing variables to php script

2012-01-13 Thread Curtis Maurand
Tim Streater wrote: > On 13 Jan 2012 at 15:05, David Savage wrote: > >> I open the html file up from a windows explorer window (Q:\asterisk\), >> and so >> IE opens it up, but the problem lies in the fact that I cannot find >> apache >> service running in the background...haven't figured out wh

Re: RE: RE: [PHP] passing variables to php script

2012-01-13 Thread Curtis Maurand
Make sure IIS is not running. That'll cause all kinds of trouble. Tim Streater wrote: > On 13 Jan 2012 at 15:05, David Savage wrote: > >> I open the html file up from a windows explorer window (Q:\asterisk\), >> and so >> IE opens it up, but the problem lies in the fact that I cannot find >>

Re: [PHP] How to find where class is used?

2012-01-06 Thread Curtis Maurand
it will be somewhere in php's search path. you'd be better off trying search for a file of the same name. cd /usr/lib/php5 find . -iname "vB_ProfileBlock*" if you have locate installed, try: "locate vB_ProfileBlock" Cheers, Curtis On 1/6/2012 6:11 AM,

Re: [PHP] Re: Question regarding passwords/security

2011-12-23 Thread Curtis Maurand
Store everything in the database in an encrypted form. Stuart Dallas wrote: > On 22 Dec 2011, at 19:34, Paul M Foster wrote: > >> I have concerns that the items in a session buffer can be copied and >> used to spoof legitimate logins. This is harder to do when the info is >> held in a database

Re: [PHP] Finding and reading firefox bookmarks with PHP

2011-11-27 Thread Curtis Maurand
It seems to me that the file structure should be in the source code somewhere and you can download that. --C On 11/27/2011 7:28 PM, David McGlone wrote: On Mon, 2011-11-28 at 01:15 +0100, Camilo Sperberg wrote: You can export the bookmarks as a json or html and then read it easily with php

Re: [PHP] Howto detect the hostname of the server?

2011-11-25 Thread Curtis Maurand
nything helpful, yet. Have I overlooked something or is there another way to identify the server? php_uname('n'); http://php.net/php_uname folks try: $_SERVER['SERVER_NAME'] Cheers, Curtis

Re: [PHP] Sniping on the List

2011-11-22 Thread Curtis Maurand
On 11/22/2011 7:15 AM, Judson Vaughn wrote: Isn't Eastern time zone minus 5 not plus 5 hours of GMT? Jud It depends upon your point of view. ;-) It's generally understood that EST5EDT is GMT (UTC) -5 because eastern time is 5 hours behind. +5 puts you in India somewhere. Chee

Re: [PHP] Sniping on the List

2011-11-18 Thread Curtis Maurand
Robert Cummings wrote: Robert Cummings wrote: > > Given the discussion, I think the following is in order: BAZINGA * 2 And what does any of this have to do with PHP?  It's time to end this thread. --Curtis

Re: [PHP] Executable flag on text files

2011-11-08 Thread Curtis Maurand
little apps and scripts that I've written to work from the command line that way. On top of that, PHP executes so much better than Perl that I don't write much in Perl any more. I just wish PEAR had better documentation. Cheers, Curtis -- PHP General Mailing List (http://w

Re: [PHP] Image Rotation Script

2011-10-16 Thread Curtis Maurand
There are tons of (free) jquery gadgets that do image rotation. All you'd need to do is push the list out to the jquery script. Cheers, Curtis On 10/15/2011 10:50 AM, d...@nkmo.com wrote: We have a simple script which rotates and image to a random value, saves it to a cache director

Re: RES: RES: [PHP] Installing PHP

2011-09-20 Thread Curtis Maurand
You've got a configuration issue.  You'll need to add a directive to execute CGI scripts to the httpd.conf or whereever the equivelent file is.  Normally, I would tell you to download and install xampp which will give you a working setup out of the box. --Curtis Mateus Almeida wr

Re: RES: [PHP] Installing PHP

2011-09-20 Thread Curtis Maurand
try http://localhost/test.php Mateus Almeida wrote: > Yes, I've put the "test.php" in the htdocs. > The server works with an html file, but it doesn’t work with the php. > > -Mensagem original- > De: Bastien [mailto:phps...@gmail.com] > Enviada em: terça-feira, 20 de setembro de 2011

Re: [PHP] Best editor?

2011-08-03 Thread Curtis Maurand
Mike Hansen wrote: >> > I mostly use VIM. However, I did play with PHP Storm, and it's pretty > nice. It also has a plug-in that emulate vi/vim. > > I've used Komodo in the past. It's also good. > I've used and like Quanta Plus (KDE on Linux). I've used Bluefish on Windows and Linux, Notepad++

Re: [PHP] Best editor?

2011-08-03 Thread Curtis Maurand
Leonardo wrote: > Dne středa 03 srpna 2011 15:22:44 Matty Sarro napsal(a): >> Hey everyone, >> I am a super newbie just beginning to learn PHP. Awhile ago, I had >> used aptana for dabbling with php and was amazed to find out that it >> had a built in php interpreter so I could do some minor tes

RE: [PHP] Constants in strings

2011-07-06 Thread Curtis Maurand
Re: [PHP] Constants in strings >> >> On Wed, 06 Jul 2011 12:56:21 +0100, Stuart Dallas wrote: >> > My guess is that the preceding $ causes PHP to interpret the next >> token >> > "{XYZ}" as a variable or a constant, but without that preceding $ it >

Re: [PHP] Constants in strings

2011-07-06 Thread Curtis Maurand
the constant and try to access a variable with that name. Any ideas? echo XYZ . "\n"; --Curtis -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Top Posting

2011-07-05 Thread Curtis Maurand
Jim Giner wrote: > outlook doesn't offer an option for that. ctrl-END gets you to the bottom of a message.

Re: [PHP] Convert a PDF to a PNG?

2011-06-16 Thread Curtis Maurand
There's an interesting discussion on this page. http://www.linuxquestions.org/questions/linux-software-2/pdf-to-png-converter-57142/ Cheers, Curtis Sean Kenny wrote: > Outside the box a bit, but is there perhaps a web-service that does > this, something like http://www.thumbali

Re: [PHP] Detecting HTTPS connections under Apache

2011-05-27 Thread Curtis Maurand
$_SERVER['HTTPS'] --Curtis On 5/26/2011 3:37 PM, Geoff Shang wrote: Hi, Apologies if this is covered somewhere but I've searched fairly extensively and not found anything. I'm working on an application which has a function for redirecting to a given URL. This i

Re: [PHP] mysql problems [SOLVED]

2011-05-14 Thread Curtis Maurand
   { $_parent = "0";    } } and that solved the problem. Thank you, everyone for your help.  Curtis

Re: Re: [PHP] mysql problems

2011-05-12 Thread Curtis Maurand
Tim Streater wrote: > On 11 May 2011 at 19:25, Curtis Maurand wrote: > >> $_cartTotal="$0.00"; > > Surely that should be: > > $_cartTotal = "0.00"; Good pickup.  I missed that.  I didn't write the code, I'm just trying to figure out what's going on. Thanks,  I'll look at that.  --C

Re: [PHP] mysql problems

2011-05-11 Thread Curtis Maurand
Marc Guay wrote: >> Does anyone have any ideas? > > Sounds like it's getting caught in a loop. Post the whole script for > best results. > It looks like the site is under attack, because I keep seeing the query, "SELECT catagory_parent FROM t_catagories where catagory_ID=" . $_currentCat" wh

Re: [PHP] mysql problems

2011-05-11 Thread Curtis Maurand
Marc Guay wrote: >> Does anyone have any ideas? > > Sounds like it's getting caught in a loop. Post the whole script for > best results. > It looks like the site is under attack, because I keep seeing the query, "SELECT catagory_parent FROM t_catagories where catagory_ID=" . $_currentCat" wh

[PHP] mysql problems

2011-05-11 Thread Curtis Maurand
econd on mysql goes from roughly 4 per second to about 12,000. Does anyone have any ideas? Thanks, Curtis

Re: [PHP] mysql error

2011-05-06 Thread Curtis Maurand
engine= --C Grega Leskov¹ek wrote: > Can smbd please look at this sentence - I got an error and do not > know how to fix it - I am still very unfamiliar with MYSQL: > > CREATE TABLE log ( idlog int auto_increment not null, imepriimek > varchar(50), clock timestamp, action varchar(30), o

[PHP] stupid array question

2011-04-11 Thread Curtis Maurand
I have the following code which should increment the value of the array $iplist if there is a value there.  When I walk the array at the end, all the values = 1.  What am i doing wrong? --Curtis while (!feof($INPUTFILE))  {    $chunks = fgetcsv($INPUTFILE, " ", '"')

Re: [PHP] Silly question

2011-04-11 Thread Curtis Maurand
Stuart Dallas wrote: > On Monday, 11 April 2011 at 02:12, Curtis Maurand wrote: > nevermind. There is a function: fgetcsv(); > > Ewww! Say what you want, it works.  Your solution is way more elegant.  regex's are not my strong suit.  I have to have the regex pocket reference t

Re: [PHP] Silly question

2011-04-10 Thread Curtis Maurand
nevermind.  There is a function: fgetcsv(); Thanks, Curtis Curtis Maurand wrote: > > > Hello, > I'm trying to run through an apache log file in an attempt to > get all of the user agents. > > The question is how do I split the > string?  I can't seem t

[PHP] Silly question

2011-04-10 Thread Curtis Maurand
to be.  I can't seem to set the delimiter to '" "' I can't seem to find any good examples, either. I can't split on spaces, because the user agents generally have spaces in them. I was trying to use explode.  print_r(explode('" "', $line); Any help would be appreciated. thanks, Curtis

Re: [PHP] pick a card, any card...

2011-04-09 Thread Curtis Maurand
Curtis Maurand wrote: > > > > seems to me that you have an array with integers as the keys. > > $desired_key = rand(0, count($array)); sorry, I hadn't had coffee, yet.  The line above should be: $desired_key = rand(0, count($array) - 1); > > $desired

Re: [PHP] pick a card, any card...

2011-04-09 Thread Curtis Maurand
seems to me that you have an array with integers as the keys. $desired_key = rand(0, count($array)); $desired_value = $array[$desired_key]; Cheers, Curtis Simon J Welsh wrote: > On 9/04/2011, at 3:39 PM, Scotty Logan wrote: > >> On Apr 8, 2011, at 8:20 PM, Kirk Bailey w

Re: [PHP] xinetd vs php socket server

2011-03-28 Thread Curtis Maurand
? > > b. > > > On 29 March 2011 01:14, Curtis Maurand wrote: > >> >> >> Nathan Nobbe wrote: >> > On Mon, Mar 28, 2011 at 3:34 PM, Bostjan Skufca >> wrote: >> > >> >> If you need high performance you probably already know

Re: [PHP] xinetd vs php socket server

2011-03-28 Thread Curtis Maurand
brary several years back (NPTL), Theading works.  I use the threading version of apache and threading is enabled in PHP. It works pretty well until its under attack by the spammers. --Curtis

[PHP] Re: [PHP-WIN] Re: [PHP] Which versions of Apache will PHP 5.3.6 work with??

2011-03-28 Thread Curtis Tammany
I had allways used PHP as an Apache module up intil now. They seem incompatible. I reinstalled PHP as a CGI binary. PHP inserts the following: #BEGIN PHP INSTALLER EDITS - REMOVE ONLY ON UNINSTALL ScriptAlias /php/ "C:/Program Files/PHP536/" Action application/x-httpd-php "C:/Program Files/PHP536

[PHP] Which versions of Apache will PHP 5.3.6 work with??

2011-03-25 Thread Curtis Tammany
ction at "0x0096c1bf" referenced memory at "0x100058a8". The memory could not be "written". Thanks in advance, Curtis -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP hangs with empty result set

2011-03-23 Thread Curtis Maurand
st a typo or your actual > code? Array elements really should be referenced by square brackets. > I made the change from the curly braces.  I didn't actually write the code.  I'm thinking of re-writing this code using the PEAR MDB2 libraries and mysqli.  Would that help? --Curtis

[PHP] PHP hangs with empty result set

2011-03-23 Thread Curtis Maurand
while loop and it's made no difference. thanks in advance, Curtis $dbhandle2 = mysql_connect($hostname, $username, $password) or die("Unable to connect to MySQL"); //echo "Connected to MySQL"; //select a database to work with $selected = mysql_select_db("databas

Re: [PHP] Question about directory permissions

2011-03-21 Thread Curtis Maurand
ut, is there a way a script can write or copy within its own dir? > Not unless it has permission to do so.  Most likely, however, it can write to the temp space such as /tmp or /var/tmp. --Curtis

Re: [PHP] designing a post fix

2011-03-18 Thread Curtis Maurand
You might also look at CRM applications such as Sugar CRM. --Curtis Negin Nickparsa wrote: > can u explain zimbra server 4 me? > > On Thu, Mar 17, 2011 at 9:44 PM, Curtis Maurand > wrote: >> >> Zimbra Server. >> >> Negin Nickparsa wrote: >>>

Re: [PHP] designing a post fix

2011-03-18 Thread Curtis Maurand
Its a free exchange server replacement.  It has shared folders, shared documents, email, calendars, shared calendars, notifications, etc. etc. etc. http://www.zimbra.com --Curtis Negin Nickparsa wrote: > can u explain zimbra server 4 me? > > On Thu, Mar 17, 2011 at 9:44 PM, Curti

Re: [PHP] designing a post fix

2011-03-18 Thread Curtis Maurand
Zimbra Server. Negin Nickparsa wrote: > :( maybe it's ticketing i don't know exactly!!!:"( > here are the things that i must do: > > receiving mails and return of mails > showing emails 2 staff > when a mail received it can be viewed in a moment(like ajax) > drafts and upload and download from

Re: [PHP] designing a post fix

2011-03-18 Thread Curtis Maurand
I would suggest Zimbra.  It just gets it done.  Run it on Ubuntu Server or CentOS. --Curtis Negin Nickparsa wrote: > I'm Negin > what is Squirrel Mail ? > On Thu, Mar 17, 2011 at 7:55 PM, NetEmp wrote: >> @Nergin: are you trying to create an application like Squirrel

Re: [PHP] designing a post fix

2011-03-18 Thread Curtis Maurand
to it.  I still like my Zimbra server idea, better for this. --Curtis Stuart Dallas wrote: > On Thursday, 17 March 2011 at 16:56, Negin Nickparsa wrote: > internal messaging system > > In that case it's simply a matter of creating a table structure to hold > the messages and b

Re: [PHP] Deleting elements from the middle of an array

2011-03-14 Thread Curtis Maurand
how about creating two arrays, one empty one. pop the elements you want out of the first array and push them to the second.  skip the push on the elements you don't want in the second array? Just a thought. --curtis Paul M Foster wrote: > On Mon, Mar 14, 2011 at 09:34:33PM +0100, Pe

Re: [PHP] CSS & tables

2009-05-15 Thread Ed Curtis
PJ wrote: I know of no better place to ask. This may not be strictly a PHP issue, but... I am busting my hump trying to format rather large input pages with CSS and trying to avoid tables; but it looks to me like I am wasting my time as positioning with CSS seems an impossibly tortuous exercise.

Re: [PHP] Re: New Horizon! scam

2009-03-02 Thread Ed Curtis
Alan Bell wrote: that would appear to be a scam of some sort, not sent by Alan Lord at all, he can spell electronic and generally speaks English. Alan. Alan Lord wrote: New Horizon! i would like to introduce a good company who trades mainly in electornic products. Now the company is under sa

Re: [PHP] multiple choice dropdown box puzzle

2009-02-23 Thread Curtis Maurand
$driverresult = mysql_query($driverquery, $mysql_link); print("\n"); while ($driverrows = mysql_fetch_array($driverresult)) { print(" '$driverrows[0]'>$driverrows[1]\n"); } print(" \n"); } HTH Curtis

[PHP] Which file "Included" me?

2009-02-18 Thread Ed Curtis
Is there a function or variable that will tell me if a file has asked another file to include something much the same as $_SERVER['HTTP_REFERER'] works. I have a script that is included on every page of a site but also needs to include some javascript only if it's called from a certain URL. t

Re: [PHP] Chrome 1.0 released

2008-12-24 Thread Ed Curtis
Bill Guion wrote: At 9:30 AM -0500 12/14/08, tedd wrote: At 3:08 PM -0800 12/13/08, Yeti wrote: I have to defend poor little IE a little now. It supports XHTML and CSS2 pretty well so far. And those standards came out a couple of months ago. Even a blind pig finds an acorn every once in a wh

Re: [PHP] alphabetical filenames with readdir

2008-08-25 Thread Ed Curtis
Ed Curtis wrote: Is there a way to make readdir output filenames alphabetically? Thanks, Ed Never mind. I figured out how to do it using an array and sort. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] alphabetical filenames with readdir

2008-08-25 Thread Ed Curtis
Is there a way to make readdir output filenames alphabetically? Thanks, Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

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

2008-07-25 Thread Ed Curtis
I've got this chunk of code (included) that used to work fine in a script up until a couple of weeks ago. Nothing has changed in the php page at all, it just quit working. If I take this chunk of code and place it alone in a php script it works just fine, but only by itself. I don't understand

Re: [PHP] strlower problem

2008-06-02 Thread Ed Curtis
Michael Kubler wrote: Does : /echo strtolower("CL22");/ work? You could also try : /var_dump($strLow); / Ed Curtis wrote: Richard Heyes wrote: Ed Curtis wrote: I'm converting upper case characters in a string to lower case and am coming up with an empty string. As I&#x

Re: [PHP] strlower problem

2008-06-02 Thread Ed Curtis
Richard Heyes wrote: Ed Curtis wrote: I'm converting upper case characters in a string to lower case and am coming up with an empty string. As I've done a million times before with other non-numerical strings. $thisStr = "CL22"; $strLow = strtolower($thisStr); echo

[PHP] strlower problem

2008-06-02 Thread Ed Curtis
I'm converting upper case characters in a string to lower case and am coming up with an empty string. As I've done a million times before with other non-numerical strings. $thisStr = "CL22"; $strLow = strtolower($thisStr); echo $thisStr; Why does $strLow come up empty? Thanks, Ed -- PHP

Re: [PHP] Upgrade

2007-09-21 Thread Ed Curtis
Ben wrote: It really depends on your situation. We are an ISP hosting lots of website. Upgrading from 4 to 5 means a lot of sites will have trouble. Personally I have some problem of upgrading from 4 to 5. The below codes work on 4: include("DB/DataObjects.php"); $pro = DB_DataObject::facto

[PHP] Upgrade

2007-09-21 Thread Ed Curtis
I'm currently running Debian Woody with PHP 4.1.2 installed by default. It's really stable and I like it alot. Would I run into any problems upgrading it to say 4.3.0. There are some functions I need in it that 4.1.2 doesn't have. I'm not ready to make the jump to PHP5 yet. I've tried it on a t

Re: [PHP] using preg_match

2007-05-16 Thread Ed Curtis
Christian Haensel wrote: Hi Ed, did you try the backslash as escape character? That's what did it. I was thinking the \ was the escape for the command but wanted to make sure. Thanks! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] using preg_match

2007-05-16 Thread Ed Curtis
I'm trying to use preg_match to find a string in a system path. What I need to do is see if the string '/realtors' exists in a variable named '$path'. I know '/' is used as a container within the command itself. How do I escape it to find the string '/realtors'? Thanks, Ed -- PHP General

Re: [PHP] db query not working

2007-03-07 Thread Ed Curtis
It is an old guy thing, at least in my case (trivia: I was born the day after the ENIAC was turned off) Aha! October 3, 1955 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php and javascript error

2007-03-07 Thread Ed Curtis
Edward Kay wrote: you've got a stay quote mark in one of your PHP vars. Not it, I looked and there's nothing there. I'm sure it's because you've got some stray characters in your output that mess it up. It would help if you actually posted the source rather than just saying it's OK, when it

Re: [PHP] php and javascript error

2007-03-07 Thread Ed Curtis
This produces an "Error on Page" in IE 7, but works perfectly in Firefox and Netscape. I have several other javascript calls on the page where this call resides and all of them work perfectly except for this one. Does this error occur because I'm sending the variables to another script that d

Re: [PHP] php and javascript error

2007-03-07 Thread Ed Curtis
Németh Zoltán wrote: 2007. 03. 7, szerda keltezéssel 10.59-kor Ed Curtis ezt írta: I've just run into this problem this morning This produces an "Error on Page" in IE 7, but works perfectly in Firefox and Netscape. I have several other javascript calls on the page

Re: [PHP] db query not working

2007-03-07 Thread Ed Curtis
Satyam wrote: I saw two people pointing two errors on the SQL insert statement which you would have found yourself had you put the 'or die()' at the end of the query, as someone else suggested. Do never leave any query without the 'or die()' after it (or any other means to check if mysql_query

[PHP] php and javascript error

2007-03-07 Thread Ed Curtis
I've just run into this problem this morning This produces an "Error on Page" in IE 7, but works perfectly in Firefox and Netscape. I have several other javascript calls on the page where this call resides and all of them work perfectly except for this one. Does this error occur becau

[PHP] db query not working as expected

2007-03-07 Thread Ed Curtis
I have this code: mysql_connect ($local_host, $local_user, $local_pass); mysql_select_db ($local_db); mysql_query ("DELETE FROM tmphitsmag"); $result = mysql_query ("SELECT DISTINCT company FROM view_log WHERE company != ''"); if ($row = mysql_fetch_array($result)) { do {

[PHP] db query not working

2007-03-07 Thread Ed Curtis
I have this code: mysql_connect ($local_host, $local_user, $local_pass); mysql_select_db ($local_db); mysql_query ("DELETE FROM tmphitsmag"); $result = mysql_query ("SELECT DISTINCT company FROM view_log WHERE company != ''"); if ($row = mysql_fetch_array($result)) { do {

Re: [PHP] Is this really a pdf?

2006-08-07 Thread Ed Curtis
ust match it against a mime type your looking for. Ed Curtis -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Silly varible question

2006-07-13 Thread Ed Curtis
> Just make $item a 2-dimensional array, with the first diemnsion addressed by > $count; so: > > $item[$count][] = $_POST['phone']; > $item[$count][] = $_POST['category']; > $item[$count][] = $_POST['copy']; > $item[$count][] = $_POST['pic_style']; > $item[$count][] = $cost; > $item[

[PHP] Silly varible question

2006-07-13 Thread Ed Curtis
I know this is probably simple as all get out but it's early and I can't find an answer anywhere after searching for a while I need to assign a number to a variable and then use that variable in a session to store an array. It's for a shopping cart system I'm building. What I've got is:

  1   2   >