[PHP] Re: XSLT support for RH8

2002-12-06 Thread electroteque
dont use rpm's at all use soure , i did a base net install of RH8 most of the packages i didnt even select coz i wanted to get them manually were older versions and unpatched versions with security issues dammit ! , you will need sablot for xslt support , goto www.php.net/xslt and check out sablot

[PHP] Re: [PHP-DEV] Re: PHP 4.3.0RC3

2002-12-12 Thread electroteque
firstly where can i add stuff to the cvs ? i have made a few posts before about an issue that hasnt changed , you guys still dont have it patched #if HAVE_LIBGD204 io_ctx->gd_free(io_ctx); #else io_ctx->free(io_ctx); #endif HAVE_LIBGD204 - this obviously means vers

[PHP] flush output error

2002-12-18 Thread electroteque
hi guys i have a little problem with flushing the buffer output, in this loop it should be downloading a file and changing the progress of a progress bar, although it waits until the shell_exec of all the files are done and then flushes the buffer which will start @ 95% , so it wont start until she

[PHP] Re: Compiling php-4.0.6 with MySQL support

2002-12-18 Thread electroteque
i tend not to use the internel mysql lib, install mysql into a prefix dir ie /usr/local/etc/mysql then do --with-mysql=/usr/local/etc/mysql u only had --with-mysql= which will use the internal lib. "Igor Shulgin" <[EMAIL PROTECTED]> wrote in message 227601c2a67a$0e5fb750$e964a8c0@ptt">news:2276

Re: [PHP] flush output error

2002-12-18 Thread electroteque
no this has been working before, it stopped working ever since i upgraded to 4.3 , whats there to multitask ? i'm simply executing curl and then executing the funtion after not at the same time but should both be executing within the same loop , it was working before especially for image uploads bu

Re: [PHP] flush output error

2002-12-18 Thread electroteque
sorry about the false alarm , if you go here u will see a working example http://galleries.dyndns.org:1023/progress.php i had to add both flush functions together to work , obviosuly flsuh is not emptying the buffer within a loop, is this still a bug ? flush(); ob_flush(); "Wico De Leeuw" <[EM

[PHP] upload_max_filesize + ini_set

2002-12-20 Thread electroteque
is there a way to get this setting to work without hard setting in htaccess ? i'd like to be able to dynamically set the max filesize via a defines setting and ini_set rather than statically in htaccess -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/

Re: [PHP] upload_max_filesize + ini_set

2002-12-20 Thread electroteque
oes work "Mike Ford" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > -Original Message- > > From: electroteque [mailto:[EMAIL PROTECTED]] > > Sent: 20 December 2002 11:35 > > To: [EMAIL PROTECTED] > >

Re: [PHP] upload_max_filesize + ini_set

2002-12-20 Thread electroteque
and i just tested the script and it let me upload a 2.5M file. so there must be a way to put it in the page aswell "Mike Ford" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > -Original Message- > > From: electroteque

[PHP] preg_replace question

2002-12-23 Thread electroteque
yet another regex question how could i hange the value within the quotes with preg_replace php_value upload_max_filesize "5M" -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] another preg_replace issue

2002-12-24 Thread electroteque
yet another regex question how could i change the value within the quotes with preg_replace php_value upload_max_filesize "5M" i am trying to edit the value of a htaccess file -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] upload_max_filesize hack

2002-12-24 Thread electroteque
hi guys i've managed to edit a htaccess file which will allow to override the upload_max_filesize ini setting which cannot be edited in php itself hope this helps, shure its a hack there could be anything with M in it, i'm terrible at regex, so if anyone would like to add to it go ahead. --

[PHP] Re: upload_max_filesize hack

2002-12-24 Thread electroteque
i just cleaned it up a bit "Electroteque" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > hi guys i've managed to edit a htaccess file which will allow to override > the upload_max_filesize ini setting which cannot be edi

[PHP] RE: PHP3 + session handling limitation

2002-12-30 Thread electroteque
hi i've just started a job and they are sadly using php3 , what is the work around for the session handling limitation ? i have an authentication class which will not work now beause it cant handles sessions :| -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://ww

Re: [PHP] locally enabling register_globals?

2003-01-03 Thread electroteque
personally i'd ask for a credit to your account for "damages" as that was bad practice for your provider to upgrade without testing sites first and at least consulting the ppl who sites will break with register globals off "Michael Greenspon" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]"

[PHP] true ip tracking

2003-01-03 Thread electroteque
hi i was wondering if there was a way to get the clients ip's behind proxies that hide the HTTP_X_FORWARDED_FOR header ? this is most important for checking ips for polls except some proxies dont send this important header ?? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, vis

Re: [PHP] true ip tracking

2003-01-03 Thread electroteque
its a bit tedious to make anonymous visotors register on the site to vote a poll , so there is no other workaround then ? "Jason Wong" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > On Saturday 04 January 2003 12:38, electroteque wr

[PHP] custom error handling

2003-01-07 Thread electroteque
hi there i am trying to build a ustom error handler for the pear db aswell as catch fatal and parse errors , unfortunatly the pear db error message wont give me back the file and the line where the error is, how can i determine the line and file where the error is caused ufortunatly the callback f

[PHP] Re: custom error handling

2003-01-07 Thread electroteque
at line 1] like line 1 could be anywhere and the query i buggered on purpose is 100 lines down "Electroteque" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > hi there i am trying to build a ustom error handler for the pear db asw

Re: [PHP] Re: custom error handling

2003-01-08 Thread electroteque
actually its getting there $backtrace = debug_backtrace(); foreach ($backtrace as $val) { if (eregi($val['function'],'query')){ echo $val['file'].""; echo $vale['line'].""; } } "Michael Sims" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... On Wed

[PHP] fast template over xsl

2003-01-08 Thread electroteque
hi i am considering the move from fast template to xslt , is there any benifits for this ? also is there a way to intergrate xsl like fast template ie parse rows in the php script -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] gettext and translations

2003-01-09 Thread electroteque
hi i am just reading up on gettext , it says its for translating messages , how about translating entire site content ? and a question i have been asked is how authentic is the translations ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] php5 cvs

2003-01-11 Thread electroteque
hi guys just noticed php5 cvs in the snaps page , does this have the zend 2.0 engine ? more specific question has it got the proper OO built in yet ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php5 cvs

2003-01-11 Thread electroteque
I didn't have any problems building it and it seems pretty > stable. > > A list of changes and features can be found at > http://www.php.net/ZEND_CHANGES.txt. > > HTH > > Danny. > > - Original Message - > From: "electroteque" <[EMAIL PR

Re: [PHP] php5 cvs

2003-01-11 Thread electroteque
hmm has the public and private function accessor changed ? i have been building my classes with test() and _test() to differentiate from public and private and have been waiting to try it out but i can still access both ! ?? "Electroteque" <[EMAIL PROTECTED]> wrote in message

[PHP] __LINE__,__FILE__ + custom error handlers

2003-01-26 Thread electroteque
hi guys i am trying to create callback error functions handlers , i was wondering if there was a way to get the file and line caught in a error function say with a database abstraction query without having to explicitly put the line and number in the query function , at the moment if i put line and

[PHP] set_error_handler inside a class

2003-01-28 Thread electroteque
hi guys how is ti possible to do a set_error_handler within a class so it will trigger the callback function and so will be able to return the line and file in the message ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] emulate callback error for php3

2003-02-01 Thread electroteque
hi sorry to ask so many questions but i have now realised that php3 doesnt handle the callback error handling so i can return the line and file of the error into a function is there a way to emulate this in php3 ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://w

[PHP] Re: emulate callback error for php3

2003-02-01 Thread electroteque
and file in the function like this ? $query = $db->query("select * from artists where artistI=1",__LINE__,__FILE__); "Electroteque" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > hi sorry to ask so many questions

[PHP] php3 + HTTP_POST_FILES

2003-02-04 Thread electroteque
is there a way to get this variable in php3 for some reason i cannot acess it ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] passing variables and functions between a base class and subclass

2003-02-06 Thread electroteque
hi there sorry about the long subject , but i have not mastered yet how to pass funtcions and variables between a base and subclass , i cant seem to access variables properly between the bass class and subclass and functions from the subclass in the base class ? -- PHP General Mailing List (htt

[PHP] counter question

2003-02-13 Thread electroteque
hi guys i am trying to increment a counter echoed out to the screen to be used for flash for ($i=0; $i < 10; $i++) { //$string = $i; echo "varText=$i&"; flush(); ob_flush(); sleep(1); } i cant seem to get each one out at a time , it will go through it then output at the end ?? -- PHP Gen

Re: [PHP] counter question

2003-02-13 Thread electroteque
ahuh "Jason Wong" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > On Thursday 13 February 2003 20:23, Dan Rossi wrote: > > i mean can u output the counter to the screen with php ? like 1 wait a few > > seconds 2 wait a few more seconds 3 etc .., atm it will go t

[PHP] creating flat versions of php pages

2003-02-24 Thread electroteque
hi guys we have 2 very high traffic sites and we need to be able to make these pages load faster , we are coming up with a solution to make flat file versions of the sites in the short term before we start using caching technologhies is this the right way to go about this ? also whats is the best w

Re: [PHP] creating flat versions of php pages

2003-02-24 Thread electroteque
i dont understand what you mean , anyway, this is a short term situation as the site is pretty slow and cpu intensive, the setup is a sun solaris box running apache 1.3 and php3 , just had a meeting today to push through apahe 2 and php 4.3 ut wont happen for a while , we need a solution in the ne

[PHP] mysql replication + mysql_pconnect

2003-03-01 Thread electroteque
hi there i am setting up a test replication slave server as a mysql db master backup if it fails , i would like to know how to dynamically connect to the slave if the master fails , something really strange i have set the host like localhost:3307 for the slave but is still connecting to the master

[PHP] language translations on php site

2003-03-05 Thread electroteque
Set your own language preference [01-Mar-2003] Starting from today, your browser's "Accept Language" setting is also honored on language sensitive pages on the php.net site. If you would like to get to the documentation page of echo for example, you can use the /echo shortcut on all mirror sites, i

[PHP] dynamic link converter

2003-03-05 Thread electroteque
ot;, "\\7", $message); the result would be |Electroteque , i need somehow to check for the stuff within the [ ] , remove the | and return on the two words Electroteque Multimedia for the second part of the replace any ideas ? -- PHP General Mailing List (http://www.php.net

[PHP] php list via email

2003-03-06 Thread electroteque
hi there , is there any way to possibly get the list via email ? i can only access it via the newsgroup viewer in outlook and my firewall guy at work persists not to let me have access and you guys are very important to have in the community while i am @ work, not saying i cant do anything my self

Re: [PHP] language translations on php site

2003-03-06 Thread electroteque
t, is grab the variable and just take the first two > letters of the variable and do my language support according to that. > > Cheers! > > Rick > > "As I grow to understand life less and less, I learn to live it more and > more." - Jules Renard > >

Re: [PHP] php list via email

2003-03-06 Thread electroteque
do i add my email in the subsription box for the ezlm ? if so i have tried it before and never got an email, the others are links to archives and newsservers "Leif K-Brooks" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Yes. http://www.php.net/mailing-lists.p

Re: [PHP] dynamic link converter

2003-03-06 Thread electroteque
thanks heaps mate http://electroteque.dyndns.org:1023/benchmark/preg.phps here it is with email hyperlinking aswell "Nik Makepeace" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > On Thu, 2003-03-06 at 05:49, electroteque wrote: > > hi there i am try

RE: [PHP] PHP to Excel Export

2003-07-08 Thread electroteque
fuk me this is much better than bifwriter -Original Message- From: [cz]Emo [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 08, 2003 11:33 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] PHP to Excel Export I like this: http://www.bettina-attack.de/jonny/view.php/projects/php_writeexcel/ Last

RE: [PHP] Text boxes posted to MySQL record that contain quotes

2003-07-08 Thread electroteque
wow i've had this issue aswell only yesterday , like in my search page of the project i've just done i stored the search values of each option so that they can return bak to the search page and edit their search entry , anyway the fulltext search text input can contain quotes denoting exact phrase

RE: [PHP] Text boxes posted to MySQL record that contain quotes

2003-07-08 Thread electroteque
apologies i hope it didnt look like i just hijacked the thread i was just adding to it, this is a pretty serious issue though i dont think i've ever come across it before funny enough as most the quoted text is in the textarea instead , the quik fix i've done is to remove the quotes altogether but

RE: [PHP] Text boxes posted to MySQL record that contain quotes

2003-07-08 Thread electroteque
adding slashes doesnt work like i said all that will show up in the box is a slash \ Try mysql_escape_string() -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] client running

2003-07-09 Thread electroteque
php as a client ? -Original Message- From: Randy Johnson [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 7:14 AM Cc: [EMAIL PROTECTED] Subject: Re: [PHP] client running All is well. The site I was connecting to with the stream changed the string format. Once I figured that out

RE: [PHP] Text boxes posted to MySQL record that contain quotes

2003-07-09 Thread electroteque
lol why didnt i think of this , i have done this before for hidden form fields when creating a preview page :\ , i guess i have to reconvert if it reposts so it doesnt screw up the sql -Original Message- From: John W. Holmes [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 8:49 PM

[PHP] custom changeable templates

2003-07-14 Thread electroteque
hi there i was wondering how i could go about changing the templates of a site with a tool and also tooling the css colours for some of the pages dynamically , let me know thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Upgrading 4.2.2 to 4.3.2

2003-07-14 Thread electroteque
all i can say it why not rerun the configure i'm sure it'll come up with some breakages like library versions and dependancies etc .. -Original Message- From: Dave [Hawk-Systems] [mailto:[EMAIL PROTECTED] Sent: Monday, July 14, 2003 9:28 PM To: [EMAIL PROTECTED] Subject: RE: [PHP] Upgradin

[PHP] help with ad serving

2003-07-21 Thread electroteque
hi there my next project at work is to build an ad server for both image and flash , i am storing each ad entry into a banner_ads table then another table media to store each of the banners into which links to the banner , although in the created admin tool i allow for multiple uploads so a flash f

RE: [PHP] free hosting

2003-07-21 Thread electroteque
spam ! -Original Message- From: Bang Dodi [mailto:[EMAIL PROTECTED] Sent: Monday, July 21, 2003 3:55 PM To: [EMAIL PROTECTED] Subject: [PHP] free hosting http://cmax.port5.com __ Mau ringtones yang gaya ? --> http://www.pon

RE: [PHP] help with ad serving

2003-07-22 Thread electroteque
Subject: Re: [PHP] help with ad serving * Thus wrote electroteque ([EMAIL PROTECTED]): > hi there my next project at work is to build an ad server for both image and > flash , i am storing each ad entry into a banner_ads table then another > table media to store each of the banners into wh

RE: [PHP] Your details

2003-08-20 Thread electroteque
i suggest everyone get spamassasin it also picks up viruses, some look like txt file attatchments though -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 20, 2003 1:54 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re:

RE: [PHP] virus on the list

2003-08-21 Thread electroteque
i am aware of this, is there any way to filter it? i'll shut up now ;\ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] PHP + MySQL Free Shopping Cart

2003-06-06 Thread electroteque
of course u can edit the scripts u will not find one that u dont have to rip the guts out of and customise -Original Message- From: Miranda, Joel Louie M [mailto:[EMAIL PROTECTED] Sent: Friday, June 06, 2003 6:36 PM To: [EMAIL PROTECTED] Subject: [PHP] PHP + MySQL Free Shopping Cart Hell

RE: [PHP] Array

2003-06-06 Thread electroteque
while (list($k, $v) = each ($rowmenu)) { $val[] = $v; } } try that -Original Message- From: Awlad Hussain [mailto:[EMAIL PROTECTED] Sent: Friday, June 06, 2003 8:20 PM To: [EMAIL PROTECTED] Subject: [PHP] Array What wrong with this code? i am tryin to create an array from the

[PHP] flawless script

2003-05-28 Thread electroteque
hi guys, how does everyone usually go about posting within a script ? i usually contain everything i need to do for a script within the same script without the need for a seperate file for posting like so switch ($_POST['action']) { case 'insert': insert into db br

RE: [PHP] RE: connection_aborted was [PHP] trikky authentication question

2003-06-01 Thread electroteque
of course thats where i got the example from but it doesnt work ignore_user_abort(true); if (connection_aborted()) $this->db->query("UPDATE users SET logged_in=0 WHERE userID=$this->userID"); if i close the browser its not setting the fiel to 0 meaning they are logged out -Original Message---

RE: [PHP] user login idle timeout feature

2003-06-02 Thread electroteque
thats what i was thinking of logic but i may be having about 10 users logged in doing full text searching on a 200 meg + database will that affect it ? -Original Message- From: Justin French [mailto:[EMAIL PROTECTED] Sent: Monday, June 02, 2003 11:21 AM To: [EMAIL PROTECTED]; [EMAIL PROTEC

RE: [PHP] Validating user input

2003-06-03 Thread electroteque
is_numeric and strlen ? -Original Message- From: Shaun [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 03, 2003 7:21 PM To: [EMAIL PROTECTED] Subject: [PHP] Validating user input Hi, I am creating a timesheet application, how can I make sure that a user has entered a number, and that the

RE: [PHP] @getimagesize

2003-06-03 Thread electroteque
try an fopen to check if the file is there first ? -Original Message- From: Diana Castillo [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 03, 2003 7:24 PM To: [EMAIL PROTECTED] Subject: [PHP] @getimagesize I use @getimagesize to resize pictures that I get from a url which comes from a dat

RE: [PHP] Re: move_uploaded_file > 1MB

2003-06-04 Thread electroteque
move_uploaded_file is copying the temp file to a permanent directory right ? thats on the server , check if the temp file is there with $_POST['tmp_name'] or its size value -Original Message- From: Yves Daemen [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 04, 2003 7:44 AM To: [EMAIL PROT

RE: [PHP] splitting text solved

2003-06-04 Thread electroteque
i found a snippet somewhere which helped me out and i modified it $value) { $keyword .= " +".$value; } } echo $keyword; ?> so basically u can have a heap of keywords with some in exact phrases within quotes and it adds the + for you to make it an AND boolean search string

RE: [PHP] project users manual howto

2003-06-09 Thread electroteque
if you dont mind an example would be nice the site is totally confusing of course i have read the documentation -Original Message- From: Armand Turpel [mailto:[EMAIL PROTECTED] Sent: Sunday, June 08, 2003 11:06 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] project users manual howto With p

RE: [PHP] project users manual howto

2003-06-09 Thread electroteque
ipts thats just rediculous ! -Original Message- From: electroteque [mailto:[EMAIL PROTECTED] Sent: Monday, June 09, 2003 6:13 PM To: Armand Turpel; [EMAIL PROTECTED] Subject: RE: [PHP] project users manual howto if you dont mind an example would be nice the site is totally confusing of cou

RE: [PHP] Cook Book Script

2003-06-09 Thread electroteque
this is easy i say do it yourself , when u get them to add the entries store their userID in a session variable and add that userID value to a column in the recipes table -Original Message- From: Wendell Brown [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 10, 2003 7:59 AM To: [EMAIL PROTEC

RE: [PHP] Want to move M$Access frontend to PHP/MYSQL. Need suggestions...

2003-06-10 Thread electroteque
i cant help much seeing that u already are using mysql why an access frontend ? i'm currently doing a access to mysql intergration , i moved the db over using sqlyog's odbc import , then i basically had to build the forms from scratch is there a problem with that ?? if u are moving over u may aswel

[PHP] shopping cart and login system

2003-06-13 Thread electroteque
hi there , i am about to build a shopping cart which will interact with a paypal payment system , the cart will use sessions to store the items and basket information before checking out and posting to the paypal form , what i'd like to know is would the cart require a login system to track users a

RE: [PHP] php editor?

2003-06-14 Thread electroteque
i use homesite usually but have been helping the php edit guys www.phpedit.net -Original Message- From: M-Ali Mahmoodi [mailto:[EMAIL PROTECTED] Sent: Saturday, June 14, 2003 4:27 PM To: [EMAIL PROTECTED] Subject: [PHP] php editor? hi all i'm a beginner in php can anyone help me about

RE: [PHP] php editor?

2003-06-14 Thread electroteque
boy how painfully dweebish is vi why make it harder for yourself :O -Original Message- From: Jeff Harris [mailto:[EMAIL PROTECTED] Sent: Sunday, June 15, 2003 2:48 AM To: M-Ali Mahmoodi Cc: [EMAIL PROTECTED] Subject: Re: [PHP] php editor? On Jun 14, 2003, "M-Ali Mahmoodi" claimed that:

RE: [PHP] Re: php editor?

2003-06-14 Thread electroteque
possibly not free though ? -Original Message- From: Aliaksei Kurets [mailto:[EMAIL PROTECTED] Sent: Saturday, June 14, 2003 9:15 PM To: [EMAIL PROTECTED] Subject: [PHP] Re: php editor? The best PHP editor I know is Zend Studio. This is a real good editor with debugging, highlighting and

RE: [PHP] php editor?

2003-06-14 Thread electroteque
to the server to test.... :) > > electroteque wrote: > > >boy how painfully dweebish is vi why make it harder for yourself :O > > > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.n

RE: [PHP] php editor?

2003-06-14 Thread electroteque
problems if your changes are right the first time) and it also lets you work on larger projects over a few days and push everything live at once without having to copy the files in question one-by-one. -M -Original Message- From: electroteque [mailto:[EMAIL PROTECTED] Sent: Saturday, June

RE: [PHP] shopping cart and login system

2003-06-14 Thread electroteque
Message- From: Jeff Harris [mailto:[EMAIL PROTECTED] Sent: Sunday, June 15, 2003 1:31 PM To: olinux Cc: electroteque; Php-General Subject: Re: [PHP] shopping cart and login system On Jun 14, 2003, "olinux" claimed that: |hi | |--- electroteque <[EMAIL PROTECTED]> wrote: |> hi

RE: [PHP] Re: PHP Problem regarding updating through text boxes

2003-06-20 Thread electroteque
hmm name the text fields the field of the database then put a [] in front of them to make them an array then then try maybe foreach ($_POST['id'] as $key=>$value) { //sql statement update table set us=$_POST['us'][$key] where id=$_POST['id'][$key]; } -Original Message- From: Esteban Fer

RE: [PHP] Zend Studio and DreamWeaver MX

2003-06-27 Thread electroteque
they both compliment eachother , use zend for code and dreamweaver to do the html, we use a templating system at work , so i use dreamweaver to quickly interpret the design into html and quickly make the tables and add the graphics etc so the templates are done quickly then i use homesite to do the

RE: [PHP] @import

2003-06-27 Thread electroteque
why php ? why not just use a .css file like everyone else ? -Original Message- From: Brian V Bonini [mailto:[EMAIL PROTECTED] Sent: Saturday, June 28, 2003 11:02 AM To: Leif K-Brooks Cc: PHP Lists Subject: Re: [PHP] @import On Fri, 2003-06-27 at 20:21, Leif K-Brooks wrote: > Brian V Boni

RE: [PHP] 'Cannot send Headers' Problem!! MOre..

2003-06-28 Thread electroteque
there is a possible problem if there is whitespace before or after a php tag check that !! -Original Message- From: Rasmus Lerdorf [mailto:[EMAIL PROTECTED] Sent: Saturday, June 28, 2003 4:20 PM To: PHPSpooky Cc: 'Marek Kilimajer'; [EMAIL PROTECTED] Subject: RE: [PHP] 'Cannot send Headers'

RE: [PHP] function doesn't return value

2003-06-28 Thread electroteque
try return true; -Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED] Sent: Sunday, June 29, 2003 5:37 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] function doesn't return value On Sunday 29 June 2003 02:53, anders thoresson wrote: > After a new user has filled in a form to reg

RE: [PHP] PHP and Macromedia Flash

2003-06-28 Thread electroteque
message me offlist for a xml actionscript example -Original Message- From: Andrew McCombe [mailto:[EMAIL PROTECTED] Sent: Sunday, June 29, 2003 9:09 AM To: Daniel J. Rychlik Cc: [EMAIL PROTECTED] Subject: Re: [PHP] PHP and Macromedia Flash On Sun, 2003-06-29 at 00:00, Daniel J. Rychlik w

[PHP] phpMyAdmin and apqache 2.0.39 cache problems

2002-07-26 Thread electroteque
hi guys i am having major caching issues in phpMyAdmin when i moved to apache 2.0.39 has anyone else expeirence this ? its sending me round the bend , i cant view my mysql tables when i create them , i have to removed temp internet files and hit refresh to get them to view -- PHP General Maili

[PHP] Re: phpMyAdmin and apqache 2.0.39 cache problems

2002-07-27 Thread electroteque
i am using IE "Julio Nobrega" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED]... > Electroteque em Friday 26 July 2002 11:19 foi agraciado com uma resposta > por: > > > hi guys i am having major caching issues in phpMyAdmin when i moved to > > apa

Re: [PHP] PHP / Apache 2.0.39 issues

2002-07-27 Thread electroteque
geez i thought they had it right this time , i had the same problem with php 4.2.1 , i downloaded the latest snapshot and just copied over the php_functions.c from there and the install worked after that "Bob Lockie" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED]... > > >Hello again..

[PHP] major problem using mv command to a directory

2002-07-29 Thread electroteque
hi guys i have a big problem i need to fix , i was moving a tar ball to another dir , using mv ImageMagick-i686-pc-linux-gnu.tar.gz /home/usr, i now cannot move into the usr directory, it has somehow appended the tar ball into the driectory strucuture and cant undo this ? please help -- PHP Ge

[PHP] stripping quotes within an image tag

2002-07-31 Thread electroteque
hi how is it possible to strip quotes from an image tag ? i need to look like -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: stripping quotes within an image tag

2002-07-31 Thread electroteque
\2\3', ' height=44 alt=hspace=0 src="blah.jpg" width=148 border=0>'); > ?> > > Elias, > > "Electroteque" <[EMAIL PROTECTED]> wrote in message > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > hi how is it possible to

[PHP] Re: stripping quotes within an image tag

2002-07-31 Thread electroteque
' height=44 alt=hspace=0 src="blah.jpg" width=148 border=0>'); > ?> > > Elias, > > "Electroteque" <[EMAIL PROTECTED]> wrote in message > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > hi how is it possible to strip quotes from a

Re: [PHP] Re: stripping quotes within an image tag

2002-07-31 Thread electroteque
acility available. Please contact us if you wish to have enquiry access to your data. "; this doesnt work using this echo preg_replace('/(]*>)/i', '\1\2\3', $string); "Jason Wong" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">ne

[PHP] stripping quotes from urls and images

2002-07-31 Thread electroteque
hi guys i now have a problem with urls i need to remove the quotes from both href="" and src="" so needs to be and i cant remove quotes from all string matches :| -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] RE: stripping quotes from urls and images

2002-07-31 Thread electroteque
6:18 AM To: [EMAIL PROTECTED] Cc: electroteque Subject: Re: stripping quotes from urls and images > hi guys i now have a problem with urls i need to remove the quotes from both > href="" and src="" > > so > needs to be and i cant > remove quotes from al

RE: [PHP] RE: stripping quotes from urls and images

2002-07-31 Thread electroteque
: electroteque; Joel Boonstra; [EMAIL PROTECTED] Subject: Re: [PHP] RE: stripping quotes from urls and images I'm reminded of a reasonable quote: "It's easy to write HTML, and impossible to parse it" Because HTML is *SO* easy to write, and has so many options, and is easy to screw

[PHP] Re: Problems with PEAR

2002-08-01 Thread electroteque
read this site http://vulcanonet.com/soft/index.php?pack=pear_tut#ss2 the best pear tutorial to get me going prob try and install via cvs , thats the whole lot though, but it works , also search http://pear.php.net for the package and then copy it to that dir also make sure the include dir to

Re: [PHP] Problem with "" inside the PHP code, due to "?"

2002-08-01 Thread electroteque
heres how i do it $xml .= "\n"; "Tom Rogers" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi, > > Friday, August 2, 2002, 2:03:18 AM, you wrote: > SF> Anyone know the workaround with the situation here? Here is the sample > SF> script. The problem is I inc

[PHP] fopen and sort by date modified

2002-08-14 Thread electroteque
hi there i was wondering how i could fopen a directory and then sort the files by date modified is there a way ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] fopen and sort by date modified

2002-08-14 Thread electroteque
sweet , damn filemtime this was hiding from me :) -Original Message- From: Bas Jobsen [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 14, 2002 8:48 PM To: electroteque; [EMAIL PROTECTED] Subject: Re: [PHP] fopen and sort by date modified Op woensdag 14 augustus 2002 13:04, schreef

RE: [PHP] fopen and sort by date modified

2002-08-14 Thread electroteque
unfortunately this isnt sorting by date modified ? -Original Message- From: Bas Jobsen [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 14, 2002 8:48 PM To: electroteque; [EMAIL PROTECTED] Subject: Re: [PHP] fopen and sort by date modified Op woensdag 14 augustus 2002 13:04, schreef

[PHP] progress bar for uploading files

2002-08-16 Thread electroteque
hi guys i was wondering if there was anyway to have a progress bar for uploading images ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] need to find a way to remove similar keys

2002-08-25 Thread electroteque
hi i am trying to find a possible way to remove similar id keys and pass back just each different one , for example i have a photo gallery each photo has a userID key of who the photo was taken by i would like to grab all the id for each photo and pass back just one result of the different people

[PHP] Re: need to find a way to remove similar keys

2002-08-25 Thread electroteque
sorry i found array_unique , so then how could i append the keys out of mysql bak into one array ? "Electroteque" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > hi i am trying to find a possible way to remove similar id key

  1   2   3   >