Re: [PHP] LIMIT?

2006-02-06 Thread Joe Henry
On Feb 6, 2006, at 12:11 PM, James Kaufman wrote: Answers that show SQL commands that apply to specific databases annoy me. Not everyone uses MySQL. I've worked with several databases that don't support a LIMIT command. At least mention the database engine you are referencing. Response like

Re: [PHP] Getting The Document Root

2006-02-02 Thread Joe Henry
you could try pathinfo() http://us3.php.net/pathinfo On Feb 2, 2006, at 8:59 AM, Jeremy Privett wrote: John Nichel wrote: $_SERVER['DOCUMENT_ROOT'] http://www.php.net/manual/en/ reserved.variables.php#reserved.variables.server Nope. I've already tried that... $_SERVER['DOCUMENT_ROOT']

Re: [PHP] Help retrieving an HTML array

2006-02-01 Thread Joe Henry
The input name must include [] (brackets) to let php know it's an array. Ex: input type=text name=xname[] value=3303 On Feb 1, 2006, at 9:07 AM, Mauricio Pellegrini wrote: Hi , I have a HTML page with a form in which there are some inputs like these: input type=text name=xname

[PHP] ob_start session_start

2005-12-07 Thread Joe Harman
Hello, Something just crossed my mind about using output buffering is there any reason why you should start a session before calling ob_start() ??? Just curious which way would be the proper way of doing it... or doesn't it matter? Thanks -- Joe Harman - * My programs never have

Re: [PHP] ob_start session_start

2005-12-07 Thread Joe Harman
Okay.. makes sense after you spelled it out to me... LOL... I always start my session first.. so, that must why i have never had any problems Cheers Thanks! Joe On 12/7/05, Zack Bloom [EMAIL PROTECTED] wrote: yes, it will display the content in the buffer before creating the session. If your

[PHP] Re: [PHP-DB] ftp_put

2005-12-07 Thread Joe Harman
... take a look at this http://www.radinks.com/upload/config.php Joe On 12/8/05, Chris Payne [EMAIL PROTECTED] wrote: Hi there everyone, I'm using FTP to upload a file from a form, the information is stored in a MySQL DB and then FTP'd to the server. Is it possible - without altering

Re: [PHP] ob_start session_start

2005-12-07 Thread Joe Harman
... but then again, you guys are the experts... i am sure someone knows a reason when you should not do that. ;o) Joe On 12/8/05, Chris Shiflett [EMAIL PROTECTED] wrote: Joe Harman wrote: Okay...makes sense after you spelled it out to me. That didn't make sense to me (and I missed the original

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Joe Harman
I have to say Dreamweaver MX also it's a great all around tool for developing sites... while it may not have all the features and be as PHP specific as Zend it gets the job done. I've learned that it's just a personal preference the best coder i've ever met used note pad LOL Joe

Re: [PHP] Web based editor

2005-11-26 Thread Joe Wollard
On Nov 26, 2005, at 12:11 PM, Todd Cary wrote: I want to provide the user with an editor like http://209.204.172.137/FCKeditor/_samples/php/sample01.php Is it best to use a JavaScript based editor? Are there some favorites out there or is the FCKeditor about as good as they get? Todd --

[PHP] NTLM, PHP and Apache

2005-11-22 Thread Joe Wollard
Greetings all, I'm running a rogue (the company knows about it but doesn't support it) web server for my dept and I'd like to be able to authenticate users transparently. The company is currently doing this on their own supported Intranet servers via NTLM on IIS. All I'm really looking for here

Re: [PHP] Is there a way to determine wich browser a visitor uses in php?

2005-11-22 Thread Joe Wollard
print $_SERVER['HTTP_USER_AGENT']; ? -Joe W -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: [PHP-DB] Drag and Drop with PHP and MySQL

2005-11-18 Thread Joe Harman
Hi Chris, I would think that there has to be something out there like a Javascript that would accomplish that... that would be my first guess anyhow... there possibly could be something done in flash that would act as a drop area for the file... let us know what you find Joe On 11/18/05, Micah

Re: [PHP] Re: [PHP-DB] Drag and Drop with PHP and MySQL

2005-11-18 Thread Joe Harman
Here is what you are asking for I think.. it uses Java. I did have a complication letting the applet install.. also, it's not free, but there is a Lite version. Hope this helps http://www.radinks.com/upload/dnd.php Joe On 11/18/05, Nate Nielsen [EMAIL PROTECTED] wrote: You wont be able to do

Re: [PHP] performance suggestions

2005-11-13 Thread Joe Belmaati
$sql = SELECT u.*, s.*, p.* FROM URL u, session s, page p WHERE u.url_id = s.url_id AND s.section_id = p.section; if (!$result = mysql_query($sql)) { die('Could not obtain results'); } while ($row = mysql_fetch_array($result)) { $url = $row['url_name']; .. .. and what ever

Re: [PHP] fopen

2005-10-25 Thread Joe Wollard
On Oct 26, 2005, at 12:54 AM, John Taylor-Johnston wrote: It does what I want, but I worry 4096 may not be big enough. Possible? Is there a way to detect the filesize and insert a value for 4096? $buffer = fgets($dataFile, $filesize); Is this what it is for? John ?php

Re: [PHP] Any good free easy converting tool?

2005-10-12 Thread Joe Harman
/) To unsubscribe, visit: http://www.php.net/unsub.php Hey Gustav!!! I use Navicat... i think they have a free trail package for their software... it's the best that I can find out there!! Good luck! Joe -- Joe Harman - Do not go where the path may lead, go instead where there is no path

Re: [PHP] PHP 5 Hosting

2005-09-29 Thread Joe Wollard
The first two results both seem pretty good at a glance: http://www.google.com/search?hl=enq=php5+ssh+hostingbtnG=Google+Search On Sep 29, 2005, at 8:29 PM, Ed Lazor wrote: Any recommendations on good host providers for PHP 5? Bonus points if they support SSH access and a PHP compiler

Re: [PHP] can not re-use a object

2005-09-19 Thread Joe Wollard
I have try to use the same $db and to create a new one... Are you trying to use the $db object inside of another function later in the code? If so you'll need to use $GLOBALS['db'] instead. Sorry, this is the only thing I can think of with your description Have you tried a simple test program

Re: [PHP] headers .vs javascript location.href

2005-09-19 Thread Joe Wollard
On Sep 19, 2005, at 5:08 PM, Chris Shiflett wrote: bruce wrote: i'd already asked/explained the error. to reiterate, the error i'm getting is the error that's generated when you try to use the php 'header' function, and it throws a warning/error regarding 'headers already being sent...'

Re: [PHP] Problems with PHP after MySQL Upgrade

2005-09-19 Thread Joe Wollard
. Unfortunately, I'm not sure how you'd get the DLL's you need since you're not compiling anything and I doubt that MySQL would provide new one's during the installation. Hopefully this gets you on your way. -Joe -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] Installing under IIS6.0

2005-09-19 Thread Joe Wollard
On Sep 19, 2005, at 9:45 PM, Dan Trainor wrote: Tjoekbezoer van Damme wrote: I've got PHP set up to the point where it will process files ending in .php, but I want to blanket the processing of PHP code under IIS in the same manner in which I blanket PHP code with Apache. If anyone has

Re: [PHP] [Off] How much time should this take?

2005-09-16 Thread Joe Harman
it for us.. centos is redhat, apache mysql and a bunch of other stuff... now that i know what was used, i probably would just do it myself... not to say that i could have done the install as fast -- Joe Harman - Do not go where the path may lead, go instead where there is no path

Re: [PHP] Re: PHP 5, LDAP/Active Directory: fixed

2005-09-14 Thread Joe Wollard
Mark, Thanks for all the help! Turns out I was right when I said my problem may have been inexperience. Your suggestion of DC=domain,DC=com worked and everything is functioning great! Thanks again! On Sep 14, 2005, at 4:35 AM, Mark Rees wrote: On my server I'm running: Fedora Core 4

[PHP] PHP 5, LDAP/Active Directory

2005-09-13 Thread Joe Wollard
to no support for server specs and settings, but I will try to get any information to the list that might be helpful. Thanks in advance for any advice or direction you can provide on this topic. -Joe W

Re: [PHP] Re: PHP 5, LDAP/Active Directory

2005-09-13 Thread Joe Wollard
On Sep 13, 2005, at 4:17 AM, Mark Rees wrote: I've looked through php.net and scoured Google for a solution to an issue I'm having with PHP and LDAP but have so far found nothing. I'm trying to build an intranet site that uses the company LDAP (Active Directory really) service but I can't seem

Re: [PHP] Re: PHP/MySQL offline

2005-09-06 Thread Joe Wollard
... an automated script that creates a static site that will allow me to do that? If all you're really looking for is a static version of your site then you could simply use wget. This will crawl all of the links on your site and generate the static version you wanted. On Sep 5, 2005, at

Re: [PHP] Making Text [not the background] transparent

2005-09-02 Thread Joe Wollard
; background- color:transparent; color:#000;This is some translucent text/div good luck! -Joe On Aug 31, 2005, at 1:09 PM, Graham Anderson wrote: How do I make the text transparent over the background ? In my web app, I want to to put a layer BEHIND the image to control the color of the php-created

[PHP] Output Buffering Error? 4.3.10??

2005-08-17 Thread Joe Harman
help! Joe Harman - Do not go where the path may lead, go instead where there is no path and leave a trail. - Ralph Waldo Emerson -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Help correcting a form mailer problem...

2005-08-17 Thread Joe Wollard
I would first start out by dumping the values of $_POST['gmev'] by using print_r($_POST['gmev']); Sounds to me like you're not getting the data that your expecting from the form for some reason. Maybe $_POST['gmev'] is an array of null values? -Good Luck On Aug 17, 2005, at 12:15 PM,

[PHP] set variables based on HTTP_HOST

2005-08-08 Thread Joe Szilagyi
site, one set of tools to run it, but each subdomain's slightly unique content pulls based on host. thanks, Joe -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] set variables based on HTTP_HOST

2005-08-08 Thread Joe Szilagyi
for the include file's existence worthwhile or even useful to protect against possible problems? thanks, Joe -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Javascript Src and HTTP_REFERER

2005-08-05 Thread Joe Wollard
I haven't tested this and it's off the top of my head so don't shoot me if I'm off track here ;-) You could possibly use some embedded javascript to set a cookie with the current URL stored in it. This would be easy to spoof as well, but not quite as easy as appending ?site=xyz. (shrug)

Re: [PHP] Redirect with referer info

2005-07-30 Thread Joe Wollard
To obtain a certain portion of the referring url you might look at parse_url(); See http://us3.php.net/manual/en/function.parse-url.php - or - If you want to bounce the user right back to the previous page including get variables you could just use this snippet. ?php $referrer =

Re: [PHP] Playing Audio

2005-07-27 Thread Joe Wollard
More specifically, I'd have two frames, one of which is hidden using css and the other that would display the content of the website. The user would never know that there were frames on the page by looking at it. Just as a warning most people will tell you that putting background music

Re: [PHP] application-wide shared data/object

2005-07-27 Thread Joe Wollard
. Good luck! -Joe On Jul 27, 2005, at 8:40 PM, Aiguo Fei wrote: In ASP.Net there is the concept of application which is a virtual directory on a Web server. An application can have application-wide shared data/objects, which can be accessed by any script of that application (i.e., scripts under

Re: [PHP] speed - PHP/MYSQL

2005-07-23 Thread Joe Wollard
going to slow your queries a bit. - http://dev.mysql.com/doc/mysql/en/data-size.html Good luck! -Joe On Jul 23, 2005, at 6:18 AM, Jasper Bryant-Greene wrote: balwant singh wrote: Hi, I have made a webpage in php which retrieves the data from a huge MYSQL tables as below:- $i=0; while

Re: [PHP] Re: System specific information gathering

2005-07-23 Thread Joe Wollard
As always, look for someone else's existing project and see how they did it. ;-) http://phpsysinfo.sourceforge.net/ Good Luck! -Joe On Jul 23, 2005, at 9:25 AM, André Medeiros wrote: First of all, you want to have the two values in seperate variables. After reading the contents from

Re: [PHP] AJAX PHP

2005-07-21 Thread Joe Harman
like me who are heavy with PHP... but don't have a clue about javascript... from my impression you need to be able to have a tiny bit of javascript programming skill to really put it to use... do a search on google for XMLHttpRequest PHP Tutorial .. there is a lot there Good Luck.. Joe On 7

[PHP] Re: Rasmus' 30 second AJAX Tutorial - [was Re: [PHP] AJAX PHP]

2005-07-21 Thread Joe Harman
will use the framework that it is based on... Thanks for taking the time to give us the example! Joe On 7/21/05, Rasmus Lerdorf [EMAIL PROTECTED] wrote: I find a lot of this AJAX stuff a bit of a hype. Lots of people have been using similar things long before it became AJAX. And it really

Re: [PHP] Re: Echo array string index?

2005-07-14 Thread Joe Harman
Hey Matt, you can print out the contents of your array by using print_r($arr) but more useful is using this foreach ($arr as $key = $value) { echo Key : .$key. Value : .$value; } Adios Joe On 7/13/05, Adam Hubscher [EMAIL PROTECTED] wrote: Matt Darby wrote: I have an array setup

Re: [PHP] Conversion of period and space for $_GET, $_REQUEST,etc. is rather senseless

2005-07-02 Thread Joe Krahn
Richard Lynch wrote: On Thu, June 30, 2005 8:47 pm, Joe Krahn said: PHP imports GET and POST data to array elements by senselessly converting periods and spaces to underscore. The intent is to make strings variable-name compatible for conversion directly into global variables via

[PHP] Conversion of period and space for $_GET, $_REQUEST, etc. is rather senseless

2005-06-30 Thread Joe Krahn
people really want to keep the period/space name mangling for array keys, and not just for variable names? And, what happens when importing other special characters to variable names? Joe Krhn -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP web archeticture

2005-06-24 Thread Joe Muddah
I am trying to design a website archeticture. Does anyone have any links or experience with archetictures that actually work. Any ideas of how to layout a website would be greatly appreciated. This is what I am thinking of doing 1)Seperate Logic from presentation Using Templates (Smarty)

Re: [PHP] Can't even make a simple test RSS feed

2005-06-24 Thread Joe Muddah
go view-source in your browser. Some browsers will not show the xml all though it is in the source On 6/24/05, Brian Dunning [EMAIL PROTECTED] wrote: What am I doing wrong? This doesn't work. The browser does not even load the page, no error or anything: ?php echo '?xml version=1.0?rss

[PHP] Sybase and PHP

2005-06-24 Thread Joe Wollard
After looking through sybase.com and coming up with nothing I thought it might be better to see if anyone has already been down this road: I've got a very old laptop with a tiny little hard drive with very little free space on it. It's being used as a 'rogue' intranet server and doing a

Re: [PHP] Re: PHP web archeticture

2005-06-24 Thread Joe Muddah
db abstraction layer). Read around and one of those will surely satisfy your needs. Catalin Joe Muddah wrote: I am trying to design a website archeticture. Does anyone have any links or experience with archetictures that actually work. Any ideas of how to layout a website would

Re: [PHP] reading PDF's

2005-06-24 Thread Joe Wollard
Jon, I'm not sure there is a way for you to do this from within PHP, but then again I didn't think it was possible for PHP to generate a pdf without any extra libs either ;-) You might want to start with the pdf2* command line programs. I think there is in fact one that will output the pdf as

Re: [PHP] text areas and line brakes

2005-06-21 Thread Joe Harman
/en/index.php STFW | http://www.google.com/search?q=php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Joe Harman - Do not go where the path may lead, go instead where there is no path and leave a trail. - Ralph Waldo

[PHP] Merging Duplicate array items

2005-06-18 Thread Joe Harman
' ); -- Joe Harman - Do not go where the path may lead, go instead where there is no path and leave a trail. - Ralph Waldo Emerson -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: [SOLVED] Merging Duplicate array items

2005-06-18 Thread Joe Harman
); $cart_count = 0; } On 6/18/05, Joe Harman [EMAIL PROTECTED] wrote: Hello, I've been trying to figure out on how I could evaluated this array and combine like items... here is the array.. it represents a shopping cart contents.. you'll notice

Re: [PHP] http to https session problem

2005-06-11 Thread Joe Harman
On 6/11/05, Joe Harman [EMAIL PROTECTED] wrote: On 6/11/05, Richard Lynch [EMAIL PROTECTED] wrote: On Thu, June 9, 2005 7:43 am, Joe Harman said: I am having a little problem with users keeping the same session id when they go from http to https... is there a work around for this... I

[PHP] http to https session problem

2005-06-09 Thread Joe Harman
in a cookie??? or is there another way or setting -- Joe Harman - Do not go where the path may lead, go instead where there is no path and leave a trail. - Ralph Waldo Emerson -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Making a page loop with header('Location: ...

2005-06-09 Thread Joe Harman
-- Joe Harman - Do not go where the path may lead, go instead where there is no path and leave a trail. - Ralph Waldo Emerson -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Making a page loop with header('Location: ...

2005-06-09 Thread Joe Harman
On 6/9/05, Richard Davey [EMAIL PROTECTED] wrote: Hello Joe, Friday, June 10, 2005, 12:36:13 AM, you wrote: JH is it possible to make a page loop with header('Location : JH page.php')??? JH I've ran into a little bit of a snag with php execution time... JH so, i need to execute

Re: [PHP] autocomplete a field

2005-06-03 Thread Joe Harman
/rich-user-experience.html Good luck Have fun! Joe On 6/3/05, Philip Hallstrom [EMAIL PROTECTED] wrote: Hi, I am new to php and I would like to find out if there's some kind of a function that would autocomplete the word/value when the user is trying to fill out a field in a form. Thank you

Re: [PHP] PHP and USB Devices

2005-06-01 Thread Joe Harman
end for user authentication.. someone mentioned using the PHP functions to call the COM object... guess I have do some reading ;o) Cheers Joe Cheers! On 6/1/05, Kim Madsen [EMAIL PROTECTED] wrote: -Original Message- From: Joe Harman [mailto:[EMAIL PROTECTED] Sent: Tuesday, May

[PHP] PHP and USB Devices

2005-05-31 Thread Joe Harman
Has anyone out there found a way to get information from a USB device running on their computer... what i am trying to do is retrive the fingerprint ID that the Microsoft USB fingerprint reader returns for a finger print and put it in a webpage form??? There has to be a way to do it... -- Joe

Re: [PHP] PHP and USB Devices

2005-05-31 Thread Joe Harman
sort of other hardware/software solution out there that I will run across... anyhow... thanks for your help... my apologizes for making an off topic request Joe On 5/31/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: On 5/31/05, Joe Harman [EMAIL PROTECTED] wrote: Has anyone out there found

Re: [PHP] Search problem

2005-05-22 Thread Joe Wollard
be found here: http://dev.mysql.com/doc/mysql/en/fulltext-search.html Hope that helps! -Joe W. www.joewollard.com http://www.joewollard.com [EMAIL PROTECTED] wrote: Hi, I need to build up a search module for a shop. If I make a basic search (product title for example) it is ok. $query = SELECT

Re: [PHP] base64_encode in URLs

2005-05-11 Thread Joe Harman
this : image_script.php?color=00key=jtzOjM6IkpvZSI7czo5OiJsYXN0X2 also this is embedded in the body of an HTML email... so, i think it's pretty safe any how the script just updates the stats and returns a 1x1 gif... Cheers! Joe On 5/11/05, Richard Lynch [EMAIL PROTECTED] wrote: On Tue, May 10, 2005 8:50 pm

Re: [PHP] base64_encode in URLs

2005-05-11 Thread Joe Harman
Hey Thanks Brandon... I know that does happen, so the stats is just suppose to approximate.. thanks for point that out Cheers Joe On 5/11/05, Brandon Ryan [EMAIL PROTECTED] wrote: Joe, this may be a little off topic, but most modern email clients wont show images in HTML unless the user clicks

Re: [PHP] Editing PDF

2005-05-10 Thread Joe Wollard
LaTex would be the answer ;-) but since no one has responded to you yet I thought that might be a good place for you to start looking. Good luck! -Joe www.joewollard.com http://www.joewollard.com Sam Smith wrote: I have an existing PDF file that I want to add text to or make changes to text

[PHP] base64_encode in URLs

2005-05-10 Thread Joe Harman
Hey just curious if it's okay to encode variables that are passed in URLs with base64_encode??? since, I am going to pass a email address in the URL, I would like to protect the email address from typical people -- Joe Harman - Do not go where the path may lead, go instead where

Re: [PHP] Fastest templating mechanism

2005-05-07 Thread Joe Wollard
Evert, Have you looked at smarty (http://smarty.php.net) ? It doesn't do exactly what you're talking about but it seems to be the Fastest templating mechanism that I've tested; probably one of the most versatile as well. Cheers! -Joe www.joewollard.com Evert | Rooftop Solutions wrote: Hi all

Re: [PHP] control-M

2005-05-05 Thread Joe Wollard
to get rid of. If ^M isn't actually being detected as a literal string you would just replace it with the ASCii value inside of the chr() function.I think ;-) Cheers! -Joe www.joewollard.com David Christensen wrote: I know I'm missing something, but I can't seem to find it or figure it out. I've

Re: [PHP] Php defense

2005-04-22 Thread Joe Harman
://www.zend.com/developers.php http://news.com.com/2100-1023-963937.html?tag=lh Good Luck Pablo, Joe On 4/22/05, Pablo D Marotta [EMAIL PROTECTED] wrote: Hi there.. I`m defending the language, but people here want to migrate to asp.. They just keep on saying php is not used for huge corporation

Re: [PHP] Is there any other place to start php module?

2005-04-12 Thread Joe Wollard
You might also look towards the bottom of httpd.conf for any additional conf files that are to be read. As I recall OSX will look for an additional conf file by default which may be trying to load the same module. Prathaban Mookiah wrote: Might be under apache conf dir/modules.d/ Prathap

[PHP] PHP Wire Ready

2005-04-12 Thread Joe Harman
with this service? Thanks, Joe -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Storing password in cookie

2005-04-12 Thread Joe Wollard
On a shared server, every other PHP scripter can read your session data, if they work at it a little bit. If you're on a shared server I think a good option for you might be to store the sessions in your database. At least then you know that as long as long as your db server doesn't have any

[PHP] HELP! HELP !

2005-04-12 Thread Justin Joe
HI, Any body give me any hinder I would be very appreciated! I want to use a parameter of the second page in the first page, how can I realize it. For example, there is a segment in the first page: tr tdcom/tdtda href='/cgi-bin/english/E_new_domain_list.cgi?domainType=1'? echo

Re: [PHP] Bulletproof POST remove

2005-04-11 Thread Joe Wollard
Andy, I've done this in the past when setting a cookie for a user-defined theme and also for a message board which used the post method. In my case I put all of the logic into a separate page altogether. So you'd have your form on page A, logic in page B and a landing page which can be the

[PHP] Re: Javascript Calendar and PHP

2005-04-06 Thread Joe Harman
-- Forwarded message -- From: Joe Harman [EMAIL PROTECTED] Date: Apr 6, 2005 2:50 AM Subject: Re: [PHP] Re: Javascript Calendar and PHP To: Nadim Attari [EMAIL PROTECTED] interakt has a great one that is used with field forms... it's like $30 or something... it's actually

Re: [PHP] Re: A strange problem..

2005-04-04 Thread Joe Harman
Hey Josh... make sure your mysql table column is a integer... not a varchar.. i've done that by mistake a few times! On Apr 4, 2005 3:22 PM, chris [EMAIL PROTECTED] wrote: what is the structure of your table? JoShQuNe [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi, i have a

Re: [PHP] Jpgraph and drop down menus examples

2005-04-01 Thread Joe Wollard
in the database (or file system): script language=JavaScript window.parent.document.getElementById('imageBox').innerHTML=No image to display; /script Hope this was helpful! -Joe Graham Anderson wrote: does anyone have or know of an example where: user chooses values from a couple of drop down boxes

Re: [PHP] Any personal experience with MySQL/Calendar application

2005-03-29 Thread Joe Harman
Hey Todd... I have one that I created and posted at Zend.com ... it can be easily adapted to store data n MySQL... Joe On Tue, 29 Mar 2005 12:33:12 -0500, Peter G. Brown [EMAIL PROTECTED] wrote: I have used egroupware in a company setting and found it to be largely satisfactory. It might

Re: [PHP] html image

2005-03-25 Thread Joe Harman
://www.snapfiles.com/get/web2pic.html good luck! let us know what you find! Joe On Fri, 25 Mar 2005 19:47:43 +0200, Dotan Cohen [EMAIL PROTECTED] wrote: On Thu, 24 Mar 2005 20:48:50 +0200, delos [EMAIL PROTECTED] wrote: i would like to produce a script that can make an image (screenshot) based

[PHP] Storing Arrays in a database

2005-03-24 Thread Joe Harman
Hey, I was curious if anyone here stores arrays in MySQL... and how r u doing this... are you converting the values to a delimited string or is there another way? Thanks Joe -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Storing Arrays in a database

2005-03-24 Thread Joe Harman
k.. in the past i have been using implode and explode... i have yet to try serialize yet... but i will be giving it a whirled in about 5 minutes... Thanks... just looking for a better way to do things Cheers thanks for the help! Joe On Thu, 24 Mar 2005 14:23:05 -0600, [EMAIL PROTECTED] [EMAIL

Re: [PHP] OR statement

2005-03-24 Thread Joe Wollard
This can also be done with double pipes, which is what is used in many other languages. - if($audio==Cool || $audio==junk || $audio==Funky){ Do this } else{ Do this } -- As far as I can tell there are no plans to remove or reason to

[PHP] Memory use

2005-03-23 Thread Joe Wollard
Greetings, I'm trying to help a C programmer understand and use PHP for web development. So far all the similarities between C++ and PHP are making the process rather speedy. He asked what seemed like a very simple question, but I couldn't find the answer. The questions is how can you

Re: [PHP] PHP file as homepage?

2005-03-15 Thread Joe Harman
Hey Phil, this can be defined in the apache config file Joe On Tue, 15 Mar 2005 11:10:30 -0500, Phil Neeb [EMAIL PROTECTED] wrote: I've noticed that PHP.net uses index.php as its homepage and well, I'm curious as to how that's possible. Is it the server setup that allows them to load a php

Re: [PHP] update of mysql to 4.1

2005-03-02 Thread Joe Wollard
forget the all important make clean command. I don't know who many times I've forgotten to do that when making major changes to the php binary. -Joe W. Peter wrote: Hi, i'm thinking of updating my mysql-server from 3.23 to 4.1.10, and i can't find any serious information if i would have to rebuild

Re: [PHP] Inline Frame and php

2005-03-01 Thread Joe Harman
Hey Todd, I use iframe alot.. what you have to do is tell it a target... but, i am not sure if you can do that with header('Location:...) .. i would be interested to know also Joe On Mon, 28 Feb 2005 16:30:28 -0800, Todd Cary [EMAIL PROTECTED] wrote: My client insists on using inline Frames

Re: [PHP] Inline Frame and php

2005-03-01 Thread Joe Harman
Hey Todd... I really think what you are going to have to do is pass a javascript variable to the parent page.. cause you are trying to send a variable from the php search page to the parent that has the iframe in it... I am correct in assuming that? On Tue, 1 Mar 2005 16:33:58 -, Mikey

Re: [PHP] source code protection

2005-02-26 Thread Joe Wollard
Shabanip, Zend provides a package for doing just this, but it comes with a price tag starting nigh to $1,000. You can find it here: http://www.zend.com/store/products/zend-encoder.php They do offer a free evaluation so you can try before you buy ;-) shabanip wrote: is there any way to protect

Re: [PHP] PHP Extension Arrays

2005-02-20 Thread Joe Wollard
Chris, I have a feeling I'm missing something but from what I'm gathering you want to be able to use the key of the array right along with the value. If that's what you need then the following should work: $array = my_array_creating_function(); while(list($key, $val) = each($array)){ echo br

Re: [PHP] undefined ap_block_alarms in libphp5.so in spite of SHARED_CORE

2005-02-20 Thread Joe Wollard
Gene. I ran into a similar problem a long time ago and found that my issue was that I had foolishly tried to recompile php5 into the same paths without cleaning out the old php binaries. I don't know if this is what you are doing but if it is then as a thought you might want to make sure that

[PHP] Samba wrapper

2005-02-20 Thread Joe Wollard
help or direction you can send me! -Joe Wollard -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Weird Error Help

2005-02-18 Thread Joe Harman
... I did add ob_start() and ob_flush() to the site... that seemed to reduce the occurance of the error though... Thanks! Joe On Thu, 17 Feb 2005 15:41:10 -0800 (PST), Richard Lynch [EMAIL PROTECTED] wrote: Joe Harman wrote: Hey has anyone had an error like this one? and have a solution

[PHP] Re: Dynamic/runtime object creation

2005-02-17 Thread joe Lovick
of the code being prewritten. a bit like create_function() for lambada type functions, but in this case for my more general object code... and searching the hell out of all these formums gives me the classkit functions, so i guess i will try and install and give them a try... anyhow cheers joe -- PHP

[PHP] Weird Error Help

2005-02-17 Thread Joe Harman
... but the only thing that has happened since this error occured is that we moved the site to a new server Thanks, Joe -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Dynamic/runtime object creation

2005-02-16 Thread joe Lovick
? basically is their a create_object() style function, and some add_method() / add_member() style functions, that to allow me to instance things dynamically at runtime. sorry that i am not being to clear, but i hope you can get my gist, thanks in advance to any help any of you can give me! cheers joe

Re: [PHP] Password Protection

2005-02-16 Thread Joe Wollard
Kevin, I'm having some issues with my email client right now so I'm sorry if you've already found the answer. There is a way for PHP to do this without the need to modify your web server's configuration or bothering with .htaccess/ .htpasswd files by simply modifying the http headers that your

Re: [PHP] PHP book recommendations

2005-02-15 Thread Joe Harman
Feb 2005 14:20:05 -0500, Joe Harman [EMAIL PROTECTED] wrote: sorry... wrong address On Tue, 15 Feb 2005 14:19:46 -0500, Joe Harman [EMAIL PROTECTED] wrote: personally, I like Julie Meloni's books... PHP essentials.. and fast and easy web development... these were some of the first books

Re: [PHP] Log-in script help

2005-01-26 Thread Joe Harman
Tom, That's a great tip! Joe On Wed, 26 Jan 2005 10:03:31 +, Tom [EMAIL PROTECTED] wrote: Joe Harman wrote: Hey Andrew... IN MY OPINION... forget the cookies... only use php sessions... but like I said IMO you can never rely on the end user having them cookies enabled... same

Re: [PHP] Re: [NEWBIE GUIDE] For the benefit of new members

2005-01-25 Thread Joe Harman
Great List... although.. .just having a sense humor here... i think every topic has been covered a number of times... which means no one should be posting questions at the php list... cause they are all in the archive :0) cheers! Joe On Tue, 25 Jan 2005 09:48:53 -0500, Jason Barnett [EMAIL

[PHP] Replace credit card numbers with X ???

2005-01-25 Thread Joe Harman
Hello, I need to replace all the numbers of a credit card except for the last 4 with an 'X' ... can't seem to locate the string function for this... can someone point me in the right direction here to what php item i should be using. Thanks! Joe -- PHP General Mailing List (http://www.php.net

Re: [PHP] Log-in script help

2005-01-25 Thread Joe Harman
some.. Cheers! Joe On 25 Jan 2005 17:35:08 -0600, Bret Hughes [EMAIL PROTECTED] wrote: On Tue, 2005-01-25 at 16:45, [EMAIL PROTECTED] wrote: Hey, I need a particular type log in script. I'm not sure how to do it or where I could find a tutorial that would help me, so I'll

[PHP] Re: [PHP-DB] checkboxes

2005-01-21 Thread Joe Harman
Well.. i just got done doing something like what you are trying to accomplish... you will need to name your check boxes like so : name=completed[] when the form is submitted, I use something like this and shove it into a field in the database: if($_POST['completed'] NULL) { // This makes one

[PHP] On large application organization [long and possibly boring]

2005-01-07 Thread Joe Harman
it is relative to how big your applicatin is going to be Cheers! Joe -- Forwarded message -- From: Jay Blanchard [EMAIL PROTECTED] Date: Thu, 6 Jan 2005 14:30:23 -0600 Subject: [PHP] On large application organization [long and possibly boring] To: PHP Mailing Lists php-general

<    1   2   3   4   5   6   7   >