RE: [PHP] checking users have the latest version of a file

2004-02-18 Thread daniel
> I dont understand what you are doing with the md5, and > > i assume YOU will know which file is the latest version. > > this is what i have to try and find out to prevent that. > How could i check for date modified on an uploaded file ? -- PHP General Mailing List (http://www.php.net/) To unsu

[PHP] Mimetypes and image uploads

2004-02-18 Thread daniel
I just discovered something totally bizarre with file uploads and mime types, if i have the document open i am trying to upload say a word file application/octet-stream and if i close the document application/msword , why is this ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] PHP Header to stimulate a POST method or POST string????

2004-02-18 Thread daniel
Firstly i luv the subject mwuahhaha, you may want to check out the pear class HTTP_Request , it'll do post and get sockets. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Advice Needed

2004-02-19 Thread daniel
Hi there, i have finally built a project space for work, its a collaborate space for storing important key documents (not public), what is the best way to store these, outside the web directory or would it be safe within a htaccess protected directory ? Being that to access that directory i would h

Re: [PHP] Re: Image resize on upload

2004-02-26 Thread daniel
gd seems to work fine ? even nconvert via command line does a good job and it resizes gif too > I'll second that one, I wrote a shell script in PHP to resize images, > using ImageMagicks mogrify > command, and it took ages. It's really much too slow for a web site. > > If you need a faster soluti

Re: [PHP] Re: PHP application design with WAE UML.

2004-02-28 Thread daniel
> This is not exactly about going from UML to PHP but going from model > design to PHP with optional UML class diagram generation: > > http://www.meta-language.net/metastorage.html > Hi manuel, this is excellent, i too have been looking into UML. I may investigate in this, there is a tool called

[PHP] PHPdoc web interface

2004-02-28 Thread daniel
Has anyone tried out the new version ? I've never managed to make it work without having to make ini files for each directory i want to document. I tried just making my options in the form, but it doesnt work here is the output Parsing Files ... PHP Version 4.3.1 phpDocumentor version 1.3.0RC2 Pa

Re: [PHP] Re: PHP application design with WAE UML.

2004-02-28 Thread daniel
just found these links http://uml.sourceforge.net/index.php http://www.phppatterns.com/index.php/link/category/39/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP Sessions - Cookies Not Saving

2004-03-04 Thread daniel
Are the hosts u looking at the same ? Like is it the very same link ? Check on the XP box if you have cookies disabled, u can always check if the session is being stored on the server too, look in /tmp first. Try a print_r ($_COOKIE); aswell. > Hi everyone, > > I'm trying to create a session with

Re: [PHP] PHP Sessions - Cookies Not Saving

2004-03-04 Thread daniel
Is it a non default /tmp ? If so it should be in php.ini or u have to set where it is with an ini_set , hope that helps. > AAAGGGH!! > > I asked my hosting company where they were stored...on the server...I > am so mad at myself...all that t

Re: [PHP] Variables not passing...

2004-03-04 Thread daniel
Is there a session_start() on the second page ? Also i didnt know u could set an action to a jscript popup, it may not be posting to the second page. What you could try is posting to the second page like a normal post, u need to do something like session_start(); $_SESSION['startdate'] = $_POST[

Re: [PHP] Shopping Carts

2004-03-04 Thread daniel
(like osCommerce requiring register_globals to be turned on) wouldnt suprise me, its highly uncusotmisable off the shelf, u need to spend a long time and write modules for it. My best advice is to go and build it yourself. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] PHP Sessions - Cookies Not Saving

2004-03-04 Thread daniel
Ahh is it showing in the url ? Usually it stores as a cookie, or via url, i think that is also set in php.ini, someone want to ellaborate here ? > If there is something in $_COOKIE, what does that mean? That there is > a cookie somewhere? Or is it appending the Session ID to the URL? > > Paul >

[PHP] PHP logging into htaccess Auth

2004-03-08 Thread daniel
Hi there i am having issues trying to get php to log into a htaccess protected directory. I used be able to simply have the username and password in the url like username:[EMAIL PROTECTED]/directory/to/protect now i get invalid syntax, any ideas ? -- PHP General Mailing List (http://www.php.net/

Re: [PHP] PHP logging into htaccess Auth

2004-03-08 Thread daniel
> Hi there i am having issues trying to get php to log into a htaccess > protected directory. I used be able to simply have the username and > password in the url like > username:[EMAIL PROTECTED]/directory/to/protect > > now i get invalid syntax, any ideas ? > > -- > PHP General Mailing List (http

Re: [PHP] PHP logging into htaccess Auth

2004-03-08 Thread daniel
> > How exactly does your protection scheme work? The directories with the flash videos are protected using htaccess > > If you're using PHP to read files (from a .htaccess protected > directory) there is no need to use: > > username:[EMAIL PROTECTED]/directory/to/protect > > PHP is not subjec

Re: [PHP] Control Structure Syntax Question

2004-03-09 Thread daniel
$x ? action1 : action2; > structure... > > It looked something like: > > $x : action1 : action2; > > I'm trying to shorten having to do the following: > > if ($x) { > action1; > } else { > action 2; > } > > can someone please post the syntax if they know it? I am reading the > fine documentatio

Re: [PHP] Re: Are $_POST and $_GET interchangable? MORE

2004-03-10 Thread daniel
something a little off topic, aparantly the manual says that $_POST is read only ? I've managed in 4.3.1 to add tot he $_POST array after posting ?? hehe > > "Jay Blanchard" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] [snip] > stuff > [/snip] > >>From http://www.w3.org/T

Re: [PHP] Spelling without Aspell/Pspell

2004-03-10 Thread daniel
is there a prebuilt so for solaris ? which i cant load in via php load_dl ? > On Wednesday 10 March 2004 05:59 pm, Justin French wrote: >> Has anyone written/found a library (commercial/free/whatever) that can >> be used like Aspell/Pspell, but doesn't require a recompile of PHP? > > If modules are

Re: [PHP] odd acrobat reaction to streaming files

2004-03-10 Thread daniel
stuff i've added to my header class header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); header("Cache-Control: no-store, no-cache, must- revalidate"); header("Cache-Control: post-check=0, p

Re: [PHP] looking for DIM people

2004-03-11 Thread daniel
I just tested it, its really slow, i'd go with flash with streaming xml if you want to do this. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

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

2004-03-18 Thread daniel
> Dear user of e-mail server "Php.net", > > We warn you about some attacks on your e-mail account. Your computer > may contain viruses, in order to keep your computer and e-mail account > safe, please, follow the instructions. > > Pay attention on attached file. > > For security purposes t

[PHP] PHP5 Release

2004-03-22 Thread daniel
Hi there i noticed RC1 is released, it states not for critical use, does that mean for development purposes still ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Ticketing system

2004-03-22 Thread daniel
Hi there, ok i am asking now, but be assured that I have googled already. I am looking for a good customisable ticketing system in PHP, i had a look at request tracker, but it doesnt look customisable and its in Perl. I am trying to find if there are solutions to what we want before i go and build

Re: [PHP] Namespaces in PHP

2004-03-29 Thread daniel
> Richard Davey wrote: > >> Hello Justin, >> >> Tuesday, March 30, 2004, 12:42:12 AM, you wrote: >> >> JP> P.S. Why do a lot of people email off list? I get doubles. >> >> They are too lazy to remove your email when doing a reply-to-all >> basically. >> > There is ways though to configure mailman

RE: [PHP] File upload progress

2004-04-06 Thread daniel
There is a java appley which can do uploads, lemme know if u want me to find it > Curt, > Thats a very valid point. But as it was stated before, the average user > does not understand what is happening. I also feel that we should not > have to hack for this functionality. > When you place a file o

Re: [PHP] File upload progress

2004-04-06 Thread daniel
never worked for me plus what is this drag and drop system ? i get an exception > Jeff McKeon wrote: > >>>I posted about this the other day. I was directed to look at >>>megaupload http://www.raditha.com/megaupload/ >>> >>>It works pretty well, I believe it uses Apache::Request to >>>get the raw p

Re: [PHP] Exceptions and builtin functions in PHP5

2004-04-07 Thread daniel
> If I understand right, PHP5 has an exception > handling mechanism but it is only for "manual" using, i.e. > a programmer can use try/catch but only for own code. > PHP's built-in functions and functions from extensions still > use old "return value" method. Yes? > > -- > PHP General Mailing List

Re: [PHP] Object oriented programming

2004-11-16 Thread daniel
> Hello my friends, how can I get a tutorial or book about Object > Oriented Programming (OOP) in PHP, if is posible about PHP 5, I am > beginning in use PEAR, and almost librarys are in OOP. Can you help me? > > Thanks :) > PEAR is the best thing that happen to PHP even though its a CPAN for PHP

[PHP] IBM Universe + PHP

2004-11-17 Thread daniel
icould find a unix .so style driver for Universe i could connect easily via iodbc and the odbcextension right ? If anyone has had a success story please let me know thanks. Daniel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

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

2004-12-05 Thread daniel
> On Mon, 2004-12-06 at 00:38, Ritesh Nadhani wrote: >> Hello, >> >> Webyog, the creator of SQLyog - the most popular GUI for MySQL has >> released SQLyog v4.0. > > 1. Your product isn't PHP related so bugger off. > 2. The most popular GUI for MySQL?? WTF are you smoking? > Maybe you could have

Re: [PHP] eBay API?

2004-12-07 Thread daniel
never tried it, looks intense though http://pear.php.net/package/Services_Ebay > Hi, > > Is anyone use eBay API? > or REST only? > > What i want to do is searching items from eBay and store those data in > my own database. > > Anybody did this before? > > -- > PHP General Mailing List (http://www

Re: [PHP] php and flash

2004-12-15 Thread daniel
> Can anyone point to some good tutorials on using PHP with flash? I am > mostly interested in displaying info from a database in the flash > movie, as well as loading movies and pictures into the flash file > (referenced in the database). > > thanks! > Yes dude, I have been implementing data via

Re: [PHP] php and flash

2004-12-15 Thread daniel
> On Wed, 15 Dec 2004 18:40:17 -0800, Dustin Krysak > <[EMAIL PROTECTED]> wrote: >> displaying info from a database in the flash movie > > If you mean like graphs.. > > http://www.infosoftglobal.com/FusionCharts/ > > There is also the option of generating xml using pear XML_Tree and loading the p

Re: [PHP] Database Framework

2004-12-15 Thread daniel
> Hi guys, > > Is there an on-going initiative as far as creating a PHP framework > somewhat the same as .Net's framework implementation? Like for > instance, the System.Data namespace where PHP developer can just create > something like a DataAdapter which can connect to a datastore and fill > a

Re: [PHP] php and flash

2004-12-15 Thread daniel
> Can anyone point to some good tutorials on using PHP with flash? I am > mostly interested in displaying info from a database in the flash > movie, as well as loading movies and pictures into the flash file > (referenced in the database). > > thanks! > Yes dude, I have been implementing data via

[PHP] Strange issues with header output

2004-12-22 Thread daniel
Hi there, I have been building a player script which outputs a windows media asx playlist with theheader output type of video-ms-wmv. I have experienced some wierd issues when i use ifstatements at certain points with the header tag enclosed within it, i get unexpected results on themac plugin. "

[PHP] PEAR DB vs ADODB

2004-12-28 Thread daniel
Hi there I am in a bit of a dilemma, I have been leaning towards ADODB for its speed, but I amliking to use some pear components that only handle pear db etc .. Honest opinions, I am doingweb applications and building a little framework for it, will I notice any performance differences if Iuse DB

Re: [PHP] PEAR DB vs ADODB

2004-12-28 Thread daniel
> Haven't done much with either of them, besides reading docs, but I'd > lean towards ADODB for its exception handling(with php5), if you need > error handling. > > Having that said, I haven't really a clue what I'm talking about in > this regard, so I'll be listening in with interest. > I'm assum

Re: [PHP] Persistent PHP web application?

2005-01-06 Thread daniel
>> >>>From my PHP library I use shm_put_var() and shm_get_var(). If >> serialization is done this way then it is implicit... right? > > Yes, these functions serialize/unserialize behing the scenes. > > -Rasmus Hi, has anyone got an example on howto use the shared memory functions ? I currently

Re: [PHP] Persistent PHP web application?

2005-01-06 Thread daniel
> I've done some benchmaring and it is quite fast, specially compared to > talking to the DB. Also, phpbeans provides a daemon that can give you > the solution you are looking for, I believe. > > Adrian Hey I just checked out phpbeans, it looks pretty intense, it does have a php deamon that runs a

[PHP] Persistance objects + importing

2005-01-16 Thread daniel
Hi list, I am needing some advise on the best way of importing classes and persistance, I am goingto supply some code, and would like to know if sessions or share memory is the best way for it.It currently serializes and unserializes the class from a session , i parse the directory and classusing

Re: [PHP] For HomeSite users...

2005-01-20 Thread daniel
I havent used Homesite in years, I am now an Eclipse advocate :) www.phpeclipse.org :) > OMG! > > This is quite possibly the coolest thing I've found in a while, and it > breathes new life into my aging HomeSite+ v5.2 (now that Macromedia > isn't really updating it and is focusing more on their

Re: [PHP] For HomeSite users...

2005-01-20 Thread daniel
> > .org don't work but www.phpeclipse.de does. > Sorry yeh , anyway it took me a while to change, but with all the added plugins i now have a cooolIDE which does cvs, debugging, xml, html, xsl testing, db schema, db modeller, uml, java, tomcat,team syncing, the list goes on. One thing i cant ma

[PHP] Best way to execute actions within a class

2005-01-28 Thread daniel
I have been building a lightweight PHP4 based, hopefully PHP5 OO structure where each page or php file contains its own class which is then executed using the constructor like so new SomeProject_SomeSubProject(); within the subclasses contructor I then call a method called start which is in a ba

Re: [PHP] PHP5 Class problem

2005-01-28 Thread daniel
> > 1. you are calling the method on a object > (i.e. not as a static call like SessionHandler::getOrgSession()) > > 2. the function (method) you are calling is _NOT_ defined as static. > > in your case you have defined all your methods as static so the > engine will not make $this available e

[PHP] PHP5 stable enough for webapps ?

2005-01-28 Thread daniel
I am in the midst of getting work to implement PHP5 onto a new server for a web based app I am doing using PEAR's DB_DataObject plus some other fancy OO. To give them the piece of mind I would like to know if its stable enough to run for an intranet based app running on Federo Linux. The extensions

[PHP] PHP5 Cli bug ?

2005-01-30 Thread daniel
I have experienced an odd bug where i have been forced to recompile my php. The cli is crappingout , firstly the include paths cant be found now this dyld: php Undefined symbols: _OnUpdateLong _OnUpdateString _compiler_globals _executor_globals _sapi_globals _sapi_module _zend_error_cb _zend_exten

[PHP] PHP5 Cli bug ?

2005-01-30 Thread daniel
I'll try this again. I have experienced an odd bug where i have been forced to recompile my php. The cli is crappingout , firstly the include paths cant be found now this dyld: php Undefined symbols: _OnUpdateLong _OnUpdateString _compiler_globals _executor_globals _sapi_globals _sapi_module _zend

Re: [PHP] PHP5 Cli bug ?

2005-01-30 Thread daniel
> > Perhaps some kind of auto-update system software is REPLACING your PHP > CLI with a "new" version... > > Wiping out your good one with a bad one... > > I guess it's also possible that you are experiencing something > triggered by different users/path settings in your environment. > > Try openin

Re: [PHP] PHP5 Cli bug ?

2005-01-30 Thread daniel
> > Perhaps some kind of auto-update system software is REPLACING your PHP > CLI with a "new" version... > > Wiping out your good one with a bad one... > > I guess it's also possible that you are experiencing something > triggered by different users/path settings in your environment. > > Try openin

Re: [PHP] about watermark

2005-02-05 Thread daniel
i am pretty sure GD can watermark ? > Does anyone can recommend some app about watermark(open source)? > > Coz I want to use it in our production, so I must use sth which is > certified very safely and fast. > > Thx. > > > > Best regards, > > Yang Shiqi > > > > > > > > -- PHP General Mailing Lis

RE: Re[2]: [PHP] need advice on template engine

2002-12-03 Thread Daniel Masson
Ive been working with smarty and for me its awsome ... My advice is SMARTY !!! Hi Justin. JF> http://smarty.php.net seems polular It seems to me too but i thick may be I can miss smthng important Alexander A. Savenkov System Administrator mailto:[EMAIL PROTECTED] JSC "Terminal GMB" ht

RE: [PHP] date

2002-12-03 Thread Daniel Masson
Take a look at mktime() and date() ... echo date("M",mktime(0,0,0,12,1,2002)) The first param of date is the format, "M" means month in string format not number of month, and mktime paramas are: int hour, int minute, int second, int month, int day, int year This should work Hi, please c

[PHP] PHP and the C Preprocessor

2002-12-04 Thread Daniel Grace
p the Make if there's a syntax error.) By the way, once I get this all working, I'll release the build system (not what it builds, however) as open-source for whoever wants it. It's going to be quite handy IMHO. -- Daniel Grace -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] PHP Sessions

2002-12-04 Thread Daniel Masson
$_SESSION IS SUPERGLOBAL Are you sure? I thought $_SESSION was a superglobal. Marco On Wed, 2002-12-04 at 09:15, Justin French wrote: > Good point -- are the included files functions, or other stuff?? > > function myfunc() > { > return $_SESSION['something']; > } > > will

RE: [PHP] UNA AYUDA-NOVATO PHP

2002-12-10 Thread Daniel Masson
Amigo: Tiene que ajustar el archivo c:/winnt/php.ini Y poner register_globals= On Cordialmente; Daniel E. Massón. Web: www.imagine.com.co Te Deseamos una Feliz Navidad y un Prospero 2,003 > -Mensaje original- > De: Héctor Fabio Sánchez Velasco [mailto:[EMAIL PROTECTED]] >

[PHP] Restarting a daemon in PHP

2002-12-12 Thread Daniel Fabian
he website again. Does anyone know of a good workaround? Thanks in advance, Daniel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Smarty + css + dreamweaver

2002-12-12 Thread Daniel Masson
s for reading this long and silly question. Daniel. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Smarty + css + dreamweaver

2002-12-12 Thread Daniel Masson
Thanks for your reply ... I know about absolute paths ... My question is why it did work ??? Cordialmente; Daniel E. Massón. Web: www.imagine.com.co Te Deseamos una Feliz Navidad y un Prospero 2,003 > -Mensaje original- > De: olinux [mailto:[EMAIL PROTECTED]] > Enviado el: j

[PHP] pfpro configuration on win2000

2002-12-19 Thread Daniel Masson
Hello list !!! Id like to know if theres a way to enable pfpro extension on windows 2000 ... Im currently usong 4.2.3 and i havnt seen any dll for this extension in the distro Thanks for your help .. Regards. Daniel. -- PHP General Mailing List (http://www.php.net/) To unsubscribe

RE: [PHP] Cheap Hosting

2002-12-26 Thread Daniel Kushner
Hi Stephen, nyphp.org has a hosting service that you might find interesting. Take a look at: http://thehostingcompany.us Regards, Daniel Kushner _ Need hosting? http://thehostingcompany.us -Original Message- From: Stephen [mailto:[EMAIL

RE: [PHP] Header information ...

2003-01-10 Thread Daniel Kushner
t() should directly follow. e.g.: Header("Location: main.php"); exit(); Regards, Daniel Kushner _ Need hosting? http://thehostingcompany.us > -Original Message- > From: Anders Mellstrom [mailto:[EMAIL PROTECTED]] > Sent: Frid

RE: [PHP] Some help on PHP & HTML please

2003-01-11 Thread Daniel Kushner
Hi Denis, You should close the PHP tag (?>) before outputing HTML. Regards, Daniel Kushner _ Need hosting? http://thehostingcompany.us -Original Message- From: Denis L. Menezes [mailto:[EMAIL PROTECTED]] Sent: Saturday, January 11, 2003 8

[PHP] MySQL problem with RedHat 8

2003-01-14 Thread Daniel Elenius
Hi! I'm trying to connect to my mysql database using something like mysql_connect( 'localhost', 'root', 'thepassword' ) or die ( 'Unable to connect to server.' ); But I get the error message: Fatal error: Call to undefined function

Re: [PHP] MySQL problem with RedHat 8

2003-01-14 Thread Daniel Elenius
Yes, mysql.so is in /usr/lib/php4. The php.ini file has this in it: [daniel@p85 etc]$ grep mysql php.ini ;extension=php_mysql.dll extension=mysql.so mysql.allow_persistent = On mysql.max_persistent = -1 mysql.max_links = -1 ; Default port number for mysql_connect(). If unset, mysql_connect

RE: [PHP] MySQL problem with RedHat 8

2003-01-15 Thread Daniel Elenius
Hi Again, I already have it! (And it is the one from the distro) [daniel@p85 daniel]$ rpm -q php-mysql php-mysql-4.2.2-8.0.5 /daniel On Wed, 2003-01-15 at 02:19, Larry Brown wrote: > You need the php-mysql rpm do rpm -q php-mysql > Get the one from the distro > > Larry S. Brown

RE: [PHP] Get the date of the last sunday

2003-01-15 Thread Daniel Kushner
http://www.php.net/manual/en/function.strtotime.php strtotime ("last Sunday"); Regards, Daniel Kushner _ Need hosting? http://thehostingcompany.us -Original Message- From: Renaldo De Silva [mailto:[EMAIL PROTECTED]] Sent: Wednesday,

RE: [PHP] MySQL Query - Not PHP Specific

2003-01-15 Thread Daniel Kushner
http://www.mysql.com/documentation/mysql/bychapter/manual_Tutorial.html#Work ing_with_NULL http://www.mysql.com/documentation/mysql/bychapter/manual_Reference.html#Con trol_flow_functions Regards, Daniel Kushner _ Need hosting? http

RE: [PHP] Re: Images : Store in dB or disk?

2003-01-16 Thread Daniel Kushner
You must remember that Images are embedded in HTML using the tag. Each image displayed on a Webpage is a result of a seperate HTTP request to the server; i.e. a PHP call in this case. Unless you are cache the SQL result, at least one query is needed per image. Regards, Daniel Kushner

[PHP] Sql server -- trusted connection

2003-01-20 Thread Daniel Masson
Hello list. I need help on this urgently. I need to connect to a ms sql server usgin windows autentication on a win 2000 box and IIS 5, i cant switch sql server to windows and sql authentication, .. I really need to know hot to connect. Thanks Daniel E Massón. Ingeniero de desarrollo [EMAIL

[PHP] Script under Windows OK, under Linux, not...

2003-01-25 Thread Daniel Page
t the file index.php cannot be opened under linux... The file is chmod 777, along with the directory /mgt, and the files identical, but still no luck... The fopen does not die(), but it does not seem to read any data from the file... I'm confused, and not sure how to check what is happening...

[PHP] Re: Script under Windows OK, under Linux, not...

2003-01-25 Thread Daniel Page
It could be somthing to do with my hoster running Linux in Safe Mode... I am not sure what this could entail, so I'll keep looking. Again, if anyone has any info, it would be appreciated!!! Cheers, Daniel "Daniel Page" <[EMAIL PROTECTED]> a écrit dans le message news: [

[PHP] getting the size of a quicktime movie or other media files

2003-01-28 Thread Daniel Leighton
in the manual. Are there any other ways to deal with this issue? Thank you for your help. -- Daniel Leighton Chief Technology Officer Webolution http://www.webolution.com This email may contain material that is confidential and privileged for the sole use of the intended recipient. Any

[PHP] Re:[PHP] Register globals on and off

2003-01-29 Thread Daniel Leighton
/manual/en/configuration.directives.php I've also used this format in apache conf files and, I believe, in .htaccess files: php_value include_path /web/lib/php:. Daniel At 7:52 AM +0100 on 1/30/03, Davy Obdam wrote: >Hello people, > >On my development machine (win XP/Apache 2.

[PHP] Re:[PHP] POST without a form

2003-01-30 Thread Daniel Leighton
> >doit.php can't be modified. I can't use javascript. > >What is the canonical way to do this in PHP ? > >-- > >Faites un voeu et puis Voila ! www.voila.fr > > > >-- >PHP General Mailing List (http://www.php.net

[PHP] Re:[PHP] Help with classes (oop)

2003-02-03 Thread Daniel Leighton
;//main script >$first = new first; >$test=$first->first(35, "chris"); > >print $test; > > >-- >PHP General Mailing List (http://www.php.net/) >To unsubscribe, visit: http://www.php.net/unsub.php -- Daniel Leighton Chief Technology Officer Webolution http://w

[PHP] Dynamically Generated Images ( PHPGraph ) and timeouts.

2003-02-05 Thread Daniel Joyce
to wait for the image? A tag, or something? -Daniel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] 3 tier web development

2003-02-07 Thread Daniel Masson
databases .. and guarantee the portability .. I hope this helps. Regards. Daniel. -Mensaje original- De: Hardik Doshi [mailto:[EMAIL PROTECTED]] Enviado el: viernes, 07 de febrero de 2003 10:24 Para: [EMAIL PROTECTED] Asunto: [PHP] 3 tier web development Hi Everyone, I am curious to

RE: [PHP] 3 tier web development

2003-02-07 Thread Daniel Masson
. youll be very satisfied with smarty. Regards. Daniel. Daniel E Massón. Ingeniero de desarrollo [EMAIL PROTECTED] Imagine S.A. Su Aliado Efectivo en Internet www.imagine.com.co (57 1)2182064 - (57 1)6163218 Bogotá

RE: [PHP] 3 tier web development

2003-02-07 Thread Daniel Masson
l") { retrun function_to_query_mssql($this->connection, ); } elseif ($this->dbtype == "mysql") { retrun function_to_query_mysql($this->connection, ); } } ); Daniel E

[PHP] Re: Protecting include files

2003-02-07 Thread Daniel Page
page, and not 1200 lines of code! http://www.dlpage.com/lib/stdlib.php Cheers, Daniel "Sid" <[EMAIL PROTECTED]> a écrit dans le message news: [EMAIL PROTECTED] > Hi, > > I have a php script which includes .inc files. Is there any way in which I > can prevent a nor

[PHP] Re: How to insert time and date into mysql?

2003-02-07 Thread Daniel Page
time of the update where his user id number is 123456789. UPDATE mail_address SET email = '$email', timesent = now(), ip = '$ip' WHERE user_id = 123456789; now() will set the value of the field timesent to the current time of the mysql server. Cheers, Daniel "Zenith&quo

[PHP] Limit the amount of returns in a MySQL query

2003-02-07 Thread Daniel Page
y return only 10 records ? the idea being able to construct a query where if there are more than 10 (or x) results on a page, you click on a link 'page 2' and so on, and the next query will return the next 10 (or x) records... Cheers, Daniel -- PHP General Mailing List (http://www.php.ne

RE: [PHP] 3 tier web development

2003-02-07 Thread Daniel Masson
Mr. Holmes Im assuming that you can add all the other database operations and the other dbtypes ... that was just the short version. Daniel E Massón. Ingeniero de desarrollo [EMAIL PROTECTED] Imagine S.A. Su Aliado Efectivo en Internet www.imagine.com.co

Re: [PHP] Re: Protecting include files

2003-02-07 Thread Daniel Page
box! (the bandwidth could be better too!) Cheers, Daniel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] delete query doesnt work

2003-02-07 Thread Daniel Masson
Maybe you have to use wildcards like: mysql_query("delete from members where company like '%$delete%'");?? Daniel E Massón. Ingeniero de desarrollo [EMAIL PROTECTED] Imagine S.A. Su Aliado Efectivo en Internet www.imagine.com.co (

[PHP] MySQL for storing PHP code

2003-02-10 Thread Daniel Page
re another way to do this? Cheers, Daniel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: MySQL for storing PHP code

2003-02-10 Thread Daniel Page
Thanks for the comments everyone! eval() has just made my day :) Cheers, Daniel "Daniel Page" <[EMAIL PROTECTED]> a écrit dans le message de news: [EMAIL PROTECTED] > Hi, > > Would it be possible to store PHP code in a MySQL table, then via a web > page, connect to t

RE: [PHP] setcookie on PHP??

2003-02-12 Thread Daniel Masson
Send some pieces of code. Daniel E Massón. Ingeniero de desarrollo [EMAIL PROTECTED] Imagine S.A. Su Aliado Efectivo en Internet www.imagine.com.co (57 1)2182064 - (57 1)6163218 Bogotá - Colombia - Soluciones web para

[PHP] Add a record and recover it's ID in one operation

2003-02-13 Thread Daniel Page
ediately the ID would have been a more elegant solution for this. Cheers, Daniel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Add a record and recover it's ID in one operation

2003-02-13 Thread Daniel Page
Thanks! I stand corrected. I'll check the PHP online manual more often, and for now, I'm off to optimise my database and rewrite a few queries :) Cheers, Daniel "Leif K-Brooks" <[EMAIL PROTECTED]> a écrit dans le message de news: [EMAIL PROTECTED] > www.php.net/my

[PHP] Keeping site metrics

2003-02-14 Thread Daniel Guerrier
Can someone direct me to a tutorial or provide insight on how to track site vistors usage. This would include Number of visits boken down by page Average time spent per visitor Total page views and Unique visitors. Thanks __ Do you Yahoo!? Yahoo! S

[PHP] Redirect without header or javascipt

2003-02-18 Thread Daniel Guerrier
Is there any to redirect in php with using header() and without the use of javascript? __ Do you Yahoo!? Yahoo! Shopping - Send Flowers for Valentine's Day http://shopping.yahoo.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

[PHP] php_mcrypt.dll

2003-02-20 Thread Daniel Guerrier
I'm trying to use the mcrypt function on winXP using php 4.3.1 and IIS 5. First the dll would not load but I got past that by placing the libmcrypt.dll in my system32. Now it loads but when I try to use mcrypt I get Warning: mcrypt_encrypt(): Module initialization failed in E:\IIS\wwwroot\saveh

[PHP] mcrypt dll's for php 4.3.x on windows

2003-02-23 Thread Daniel Guerrier
Hello folks, I found a working version of the php_mcrypt.dll and libmcrypt.dll for php 4.3.x. It may working on earlier versions, but I don't know for sure. You can download it from: http://home.earthlink.net/~dguerrier/data/mcrypt.zip __ Do you Y

Re: [PHP] phpmyadmin duplication of sql

2003-02-24 Thread Daniel Guerrier
Duplicate column name 'y' Back It means what it said. You are trying to create a table with two columns with the same name. --- Michael Gaab <[EMAIL PROTECTED]> wrote: > i am using the phpmyadmin interface to develop a > small web based > application. > when i create a table i get the following

[PHP] Re: Multiple Data Requests

2003-02-24 Thread Daniel Joyce
j first_name ( in ascending order ). I think this should work, if I understand your db table layout properly... -Daniel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Keep cariage returns

2003-02-24 Thread Daniel Guerrier
Is it possible to maintain the carriage returns in a database insert. When I input data from a textfield with returns into the database, it is lost on a subsequent select and print. __ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, mor

Re: [PHP] Output Numerical Month as String?

2003-02-25 Thread Daniel Guerrier
http://www.zend.com/manual/function.date.php --- CF High <[EMAIL PROTECTED]> wrote: > Hey all. > > Easy question here (can't find the answer in php > manual) > > In Cold Fusion I'm able to format a given numerical > month value, say the > third month, as #MonthAsString(3)# and it returns > "March

<    1   2   3   4   5   6   7   8   9   10   >