Re: [PHP] Facing some problem with mySQL Installation

2002-07-25 Thread S.
Maybe it's a permission problem: if you read the installation procedure of MySQL, you can find that some file system permission modifies are required (you must modify the permissions of 2 or 3 file (or directories)); Have you chenged theese permission? S. Il 08:52, giovedì 25 luglio

[PHP] how to know upload progress status

2002-07-10 Thread S.
users. For example I want the users can see 30% of upload completed, or the MByte just uploaded. I had some difficulties to write to the list, so I send the mail (with some modifies in the address) several times; I apologyze if many mails are sended to the list. Thanks for help...! S.

Re: [PHP] Re: how to know upload progress status

2002-07-11 Thread S.
Thanks for informations, I'll try to work on a different approach, maybe analyzing the dimension of the temporary file during upload (if it is possible identify the temporary file and monitoring it with another script). Thanks for your help, S. Il 11:55, giovedì 11 luglio 2002, val petr

RE: [PHP] forms and inputs

2002-03-24 Thread S
type a few sentences, in and on the next page I show everything s/he typed asking "Are you sure you want to submit this... Once clicked "YES" all data is being taken to the next page for FINAL submission to mysql. (all is done in one php script though) But anyway, the problem is

RE: [PHP] forms and inputs

2002-03-24 Thread S
You have to put quotes around the value or else you won't get anything pass the space. WRONG: RIGHT: -Original Message- From: Vlad Kulchitski [mailto:[EMAIL PROTECTED]] Sent: March 24, 2002 3:10 PM To: S; [EMAIL PROTECTED] Subject: RE: [PHP] forms and inputs Hi continuing

[PHP] function misfunction

2002-12-30 Thread Martin S
ng "$tracking->" above. Obviously I'm doing something wrong here. What? Cheers, Martin S. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] function misfunction

2002-12-30 Thread Martin S
)"; break; case "printers": $query = "SELECT name FROM printers WHERE (ID = $this->ComputerID)"; break; } (And yes I suppose you could write that as "SELECT name from $lookuptable WHERE "; What am I missing now? /Martin S. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Function misfunction - 2

2002-12-30 Thread Martin S
NOW what am I doing wrong?? function setCurrentDevGroup($devID) { $query = "SELECT dev_group FROM tracking WHERE (computer = $devID)"; $sth = $adb->prepare($query); if($sth) { $res = $sth->execute();

Re: [PHP] Function misfunction - 2

2002-12-31 Thread Martin S
Marek Kilimajer wrote: > You forgot global $adb; at the beginning of your function, or use > > $sth = $GLOBALS['adb']->prepare($query); Nope sorry, I've just edited it from my post here. It is in the function. /Martin S. -- PHP General Mailing List (http://www.php.

Re: [PHP] Function misfunction - 2

2002-12-31 Thread Martin S
Jason Wong wrote: > On Tuesday 31 December 2002 20:02, Martin S wrote: >> Marek Kilimajer wrote: >> > You forgot global $adb; at the beginning of your function, or use >> > >> > $sth = $GLOBALS['adb']->prepare($query); >> >> Nope sorry,

Re: [PHP] Function misfunction - 2

2002-12-31 Thread Martin S
Jason Wong wrote: > On Tuesday 31 December 2002 20:48, Martin S wrote: > >> This is the function which should return e.g. "printers" for >> $lookuptable. But doesn't. >> >> function setCurrentDevGroup($devID) >> { >>

Re: [PHP] Function misfunction - 2

2002-12-31 Thread Martin S
#x27;t work so I abandoned it. Perhaps I did something else stupid. I'll re-read the docs. Thanks for your help, and Happy New Year! Martin S. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] image source from PHP

2003-01-23 Thread Karina S
Hello, I want to make a sit where an image comes from a database. In the db I store only the filename and path. I have the following code: > The echo line print the good string e.g.: "Pic/Myphoto.jpeg" But I can't see the image. Only a one small whit box wit red x (no image). And if I try

[PHP] Global "structures" (newbie)

2003-01-31 Thread Karina S
Hi, I'm a beginner in PHP and I want to access some variable all of my php sites. I want to order them in an array, class,... Eg.: User.Name User.Phone General.Info Camera.Type Camera.Class ... What is the most secure and "beautiful" solution for that in PHP? Can I add an array into the $_SESSIO

[PHP] Which link was selected?

2003-02-03 Thread Karina S
Hi, I put pictures from a database ont the page about my products. If the user click on a picture I want to give a detailed description about the product. But how can I get, which picture was selected? Thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.

[PHP] Document(),passing argument

2003-02-19 Thread William S.
I am trying to get document() to work when the content of an xml file is passed as an argument using Sablotron. My goal is to apply this method to bringing in several xml files to the stylesheet. Below is the test situation. Can anyone see where I am going wrong? --- begin doc_test.php --- %s

[PHP] passing content of file as argument

2003-02-20 Thread William S.
I would like to pass the content of "./doc_test2.xml" as an argument. How would I alter the file below to accomplish this? Do I need to change the stylesheet as well? begin *.php---- %s", xslt_errno($_parser), xslt_error($_parser) ); } ob_end_clean(); xsl

Re: [PHP] passing content of file as argument-SOLVED-

2003-02-20 Thread William S.
Please disregard the previous post. I figured it out. On Thu, Feb 20, 2003 at 04:24:00PM +0100, William S. wrote: > I would like to pass the content of "./doc_test2.xml" > as an argument. How would I alter the file below to > accomplish this? Do I need to change the s

[PHP] print html code

2003-07-02 Thread Karina S
Hello, I want to make a php site which can generate a html code and display it on the screen. (Display the code itself.) I use htmlspecialchars() function. It works fine, but now I have to add about 200 lines of static html code to print it out. If I put all of the code in a string than it will ap

[PHP] Open new browser window

2003-07-10 Thread Karina S
Hello, I want to make a php application, which displays different text in separate windows. I mean for example a new window will open with text "Hello 1" and a second window opens with text "Hello 2". How is it possible with php? Thanks! -- PHP General Mailing List (http://www.php.net/) To u

[PHP] preg_match issue

2003-08-15 Thread Pascal S.
I have a function that checks the syntax of a string using preg_match. This function is used in a loop and always hangs on the same string (7 out of many more). However, the function acts as expected when used individually on that string (ie when the array of strings to loop on is reduced to just

[PHP] String Manipulation

2003-06-01 Thread S. Cole
. If anyone can help, It would be greatly appreciated. I have been pulling my hair out trying to find a way to do this. I've been studying regular expressions, however am not familiar enough with them to be able to get it to work. Thanks in advance, S. Cole ANTI-SPAM: to reply, delete "REMO

[PHP] check is pop address

2003-06-10 Thread Philip S
, Phil S -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Disaple warnings

2003-06-17 Thread Karina S
Hello, I have the following code: if (file_exists("themes/$ThemeSel/modules/$name/$mod_file.php")) { $modpath = "themes/$ThemeSel/";} At home on my PC (WinXP+PHP4.3.2) this code works without warnings. But in my office (Win2000+PHP4.3.0) I always becom warnings for this line and in case of an

[PHP] Form creator tool

2003-06-23 Thread Karina S
Hello, I have to make a lot of input and edit form to mysql tables. Is there any tool with it I can easy make php based html forms? I mean eg.: User can select fields from mysql table and the tool generate an input or an edit form to it. Thanks! -- PHP General Mailing List (http://www.php.ne

[PHP] Session problem

2003-06-24 Thread Karina S
Hello, I have a problem with php sessions. The following code works on my home PC but doesn't work on my office PC. What can be the problem? Thanks! I have 2 files: file1.php: session_stert(); $_SESSION['demo']="test"; and file2.php session_start(); echo $_SESSION['demo']; I use PHP 4.3.2.

[PHP] Re: pg_pconnect() question

2002-07-26 Thread Sukumar .S
ng purpose, you can just give "trust" for localhost and try whether you are able to connect to postgresql or not. -S. Sukumar > I am trying to connect to postgre_sql database using > pg_pconnect(). When I try to run it i get the > following error > Warning: Unable to connect

[PHP] odbc_fetch_array function

2002-10-03 Thread Pascal S.
I have version 4.2.3 of PHP installed on a Windows server. I am new to PHP. I did find the function array odbc_fetch_array ( resource result [, int rownumber]) in the documentation, but it doesn't seem implemented in the version that I use. Do you know what I did wrong? Thanks, Pascal -- P

[PHP] Sessions Sessions. Lovely Sessions.

2002-10-26 Thread Mohamed S.
Ok. I've had to wrestle with some peculiar issues with my sessions... 1) If at any point, I give my session a name different than the default using session_name('XYZ'), my session won't be created. Is there a limit to the number of characters a session name can have? Capitalization? ANYTHING? 2)

[PHP] Most current non-beta version, and bcc

2002-11-07 Thread Jill S
Hi, I have two questions. Am relatively new to PHP and couldn't get the mail() function to send a bcc (i.e. blind copy). My ISP (unix server) has v. 4.1.2 installed. After much ado, I discovered that apparently this is a known bug and that PHP versions < 4.3 do not support the Bcc: header elem

Re: [PHP] Most current non-beta version, and bcc

2002-11-07 Thread Jill S
ersions? Thanks, Jill At 08:54 PM 11/7/02 +0100, you wrote: >At 20:48 07.11.2002, Jill S said: >[snip] >>never install a "beta version" and that >>http://www.php.net/downloads/ - Latest version of PHP >>Complete Sour

Re: [PHP] Re: Most current non-beta version, and bcc

2002-11-07 Thread Jill S
unusual, it's unheard of. How very fortunate you are! :-) Sincerely, Jill At 07:33 PM 11/7/02 -0200, you wrote: >Hello, > >On 11/07/2002 05:48 PM, Jill S wrote: >> ... So, my questions are - Is the tech support guy correct? > >He is very correct but I would be even s

Re: [PHP] Warning! Spam to PHP mailing list

2002-11-07 Thread Jill S
In case you're interested, I'm relatively sure this list has a idiot spammer subscriber. I just received my first spam message and subscribed to this list today. Have been using this email address for about a year and Google search (and a couple of the other major search engines I just checked) pr

Re: [PHP] Most current non-beta version, and bcc

2002-11-10 Thread Jill S
At 09:16 PM 11/7/02 -0700, you wrote: >At 02:38 PM 11/7/02 -0600, Jill S wrote: >>so again I'll ask - Are the 4.2.3 downloads at the top of the >>page at: http://www.php.net/downloads/ "beta versions" or >>non-"beta" versions? > >4.2.3 is currentl

Re: [PHP] Sablotron broken in 4.2.1 ?

2002-06-08 Thread William S.
Thank you for the feedback. Sablotron is running fine now. Just had to do some modifications with my *.xsl file. Here is what I have going now with the implementation: http://213.84.71.105/ On Tue, Jun 04, 2002 at 10:57:45AM +1000, Tom Rogers wrote: > hi > I am using 4.2.1 and it works fine, I

[PHP] Running PHP script within stylesheet?

2002-06-09 Thread William S.
I am very new to PHP, Sablotron, XSLT, and MySql. Right now I have created a web page that is the result of a transformation (through php) of an xsl and xml file. What I would like to do is run a PHP script so that the result is displayed within a table on my web page. How do I do this? Here is a

[PHP] Running PHP script within stylesheet?

2002-06-09 Thread William S.
Sorry, perhaps I should have been a bit more specific. Here is my *.php file. I want the "hello world" script to output to the "Right Menu" table on my web page: http://213.84.71.105/ . %s", xslt_errno($_parser), xslt_error($_parser) ); } xslt_free($_parser

[PHP] Can a php script be placed within a stylesheet?

2002-06-10 Thread William S.
Can a "php script" be put within a stylesheet and work properly? If so, how? For instance, this script put inside an XSL stylesheet file: Then it is transformed into html via Sablotron. -- Bill Amsterdam, NL -- PHP General Mailing List (http://www.php.net/) To unsubscribe, vi

[PHP] Stylesheet to query an xml file

2002-06-11 Thread William S.
I am looking for an example or an explanation of how to set up a stylesheet so it will enable a user to query content in an XML file. For instance. Have an XML file with names and addresses and the user would be able to search for a name and get back a list of matches. This would need to work wi

[PHP] appending to XML file before closing tag

2002-06-25 Thread William S.
This works pretty well to append content to an XML file. However, I need to keep the closing tag where it belongs: at the end of the file. This only appends to the end and doesn't work. I use ... $myecho = "Hello World"; $file_name = "file.xml"; $file_pointer = fopen($file_name, "a"); fwrite($

Re: [PHP] appending to XML file before closing tag

2002-06-25 Thread William S.
Yes, that worked. Nice and effective solution. Thank you. On Tue, Jun 25, 2002 at 09:51:21AM -0400, Erik Price wrote: > > If you know for a fact that the ending tag for each file is consistent > and always that same tag, here's an idea. Determine or specify the > length of the ending tag (in

[PHP] gdlib list or galleries?

2002-06-27 Thread William S.
Is there a mailing list just dedicated to gdlib or any places that show a gallery with examples? I would be interested in seeing examples of images that are complex/artistic and beyond simple rectangles and boxes. -- Bill Amsterdam, NL -- PHP General Mailing List (http://www.php.net/) To unsub

[PHP] imageellipse not working with gdlib2.0

2002-06-30 Thread William S.
Maybe I am just doing it incorrectly but I am unable to get anything displayed with imageellipse in gdlib2.0. Can anyone give me a simple php script to test it with? I am using php with Sablotron. Thank you. -- Bill Amsterdam, NL -- PHP General Mailing List (http://www.php.net/) To unsubscrib

Re: [PHP] svg graphics and php : is it possible

2002-07-03 Thread William S.
Perhaps this relates to the original question as an additional feature. What would be the best way to offer SVG content from the main opening page? Since SVG requires a browser that has the approprite plugin or a dedicated browser, is it better to create a hyperlink or maybe have the SVG capabili

[PHP] using xsl:value-of select within form

2002-07-03 Thread William S.
I am able to do this: But would like to do something like this: "/> I know the latter does not work, so how do I correct it? Thank you, -- Bill Amsterdam, NL -- PHP General Mailing List (

[PHP] html entry within XML "database"

2002-07-13 Thread William S.
I am experimenting with using an XML file as a database. One of the things I do is provide a way of adding records to the database by an html form. This seems to work out well so far unless one of the fields in a record contains an html reference. The result is a Sablotron parse error. What is t

[PHP] select multiple within for-each

2002-07-15 Thread William S.
This works OK with creating buttons but is not what I want. POST/INPUT myform list.php post submit insert

Re: [PHP] select multiple within for-each (SOLVED)

2002-07-15 Thread William S.
Please disregard the previous posting I made. I figured it out. On Mon, Jul 15, 2002 at 10:52:23AM +0200, William S. wrote: > This works OK with creating buttons but is not what I want. > POST/INPUT > > > > > >

[PHP] Segmentation fault with Sablotron xslt_process()

2002-07-17 Thread William S.
next step? %s", xslt_errno($_parser), xslt_error($_parser) ); } ob_end_clean(); xslt_free($_parser); echo $result; ?> Starting program: /usr/sbin/httpd -X Program received signal SIGSEGV, Segmentation fault. __libc_free (mem=0x2) at malloc.c:3135 3135malloc.c: No such

[PHP] Re: $HTTP_SERVER_VARS not accessible in Functions (fwd)

2002-07-21 Thread Sukumar .S
What is your PHP Version ? Try putting the global $HTTP_SERVER_VARS; print_r($HTTP_SERVER_VARS); in your custom function and check out what is it printing... -S. Sukumar > I'm trying to access some settings in the $HTTP_SERVER_VARS[] array, but, > within a custom func

[PHP] Unique yet Eerie

2003-09-01 Thread Mohamed S.
I'm have a strange problem. I've encoutered a few before, but nothing like this: New machine with php4.2.2 on RedHat with Apache2.0 All my forms use POST method. But I noticed that some scripts when i submit the form, i get wierd data. For example: say i have then what i will get for $example

[PHP] Back function with php

2003-09-27 Thread Karina S
Hello, how can I go back to the previous php page from where the actual page was called? I want to know not only the file name but the parameter list too. (I mean I want "demo.php?p1=1&p2=2&p3=s" and not only "demo.php" from "second.php" which was linked

[PHP] Submit button

2003-09-28 Thread Karina S
Hello, I want to use an image as submit button on my form. Now I use the following code with button: if (!(isset($_Post['SubmitForm']))) { ... . } else { . } Is it possible to change the Submit button with an image? Thanks! -- PHP General Mailing List (ht

Re: [PHP] Submit button

2003-09-28 Thread Karina S
I have changed the code, but it doesn't work. if (!(isset($_Post['SubmitForm_x']))) { ... . } else { . } "Eugene Lee" <[EMAIL PROTECTED]> az alábbiakat írta a következo üzenetben news:[EMAIL PROTECTED] > On Sun, Sep 28,

[PHP] Use include function (newbie)

2003-10-17 Thread Karina S
I make a site where I list data from a mysql database. I want to divide the task into 2 parts. The 1. php is the logic.php an the 2. is the html table (html.php) with field values. I plan that the form action in the html.php file call the logic.php but the logic.php includes the html.php. I mean:

[PHP] Test.

2003-11-02 Thread S. Cole
Disregard. having newsgroup trouble -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP, Java, & a strange number...

2003-11-11 Thread Dom S
Hi, I am having problems trying to get PHP to return a Java .jar file. Basically, the jar is reported as corrupted by Opera, or any browser and Java 1.3. I have tracked this down to a strange number at the start of the message body: If I access the jar file directly (no PHP), I get (viewed by p

[PHP] Re: PHP, Java, & a strange number...

2003-11-11 Thread Dom S
Please ignore - now posted to bug newsgroup "Dom S" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > I am having problems trying to get PHP to return a Java .jar file. > Basically, the jar is reported as corrupted by Opera, or any browser and > J

[PHP] Removing security-problematic chars from strings

2003-11-21 Thread Troy S
Greetings, What is the best way to remove the characters from strings that may cause security problems? Namely, `, ', ", <, >, \ and all non-printing strings. Did I miss any? Thanks. Troy

[PHP] Homepage

2001-01-17 Thread S Bey
Just a small (and hopefully easy) question. Is there a PHP equivalent of index.html? I want to be able to go straight to a PHP script without the user specifying the filename. Thanks, Steve. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additi

[PHP] Generating percentages of numbers

2001-02-21 Thread Blake S.
I have a database of numbers: TOTAL HITS: 1000 PAGE 1: 500 PAGE 2: 250 PAGE 3: 250 How can I query these numbers and display back a percentage number? For instance with the numbers above: PAGE 1: 50% PAGE 2: 25% PAGE 3: 25% Or is their a process by which to store numbers for easily getting thi

[PHP] Php, Apache, mysql - make error

2001-03-04 Thread S Jha
HI Gurus, I am getting this error. I saw few posting for this error and found someone suggesting "-lz" option in Makefile in LIBS option. However, I didn't found this line in apache Makefile. Also I tried other methods including reloading zlib, reconf mysql ..but in vain. Please help. I did - #

[PHP] Program to edit HTML file via the web??

2001-04-17 Thread Blake S.
only reading the HTML between two font tags lets say. This way a user editing the file would not get themselves into trouble by accidentally deleting a table tags for instance. Thanks Everyone Blake S. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED

[PHP] php chat or customer support center

2001-05-08 Thread Black S.
, Blake S. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] phpmyadmin blob blues

2001-12-28 Thread Paul S.
I had been using "blob" for a lot of mysql text fields, even email address as well as other data. all of a sudden, it seems, instead of seeing and editting these blob values in phpmyadmin (i currently have 2.2.2) tables all i see in the fields is "[BLOB]" and I am ubnable to edit the fields. Does

Re: [PHP] phpmyadmin blob blues

2001-12-28 Thread Paul S.
TRUE? > > Op vrijdag 28 december 2001 16:52, schreef Paul S.: > > I had been using "blob" for a lot of mysql text fields, even email > > address as well as other data. all of a sudden, it seems, instead of > > seeing and editting these blob values in phpmyadmin (i cu

[PHP] dot files in php directories

2001-12-28 Thread Paul S.
When reloading php software to new directories deleting the old dir is often difficult because there is a dot file (often with a majic quotes directrive) so directories aren't empty. I have to telnet to my main account and use command line ftp to delete the (still invisible) offending dot files. T

Re: [PHP] PHP Security - "view source code"

2002-01-21 Thread Sukumar S.
Dear all, One more measure thing to stop getting the source code with .inc is to deny the files which has "inc" extension in Apache httpd.conf itself with "DIRECTORY" configuration. with regards, Sukumar .S On Thu, 17 Jan 2002, Radu Filip wrote: > Date: Thu, 17 Jan 2

RE: [PHP] PHP-JavaScript

2002-01-21 Thread Sukumar S.
application which process the form would get the values. I think i understood the question well... with regards, Sukumar .S On Mon, 21 Jan 2002, Tim Ward wrote: > Date: Mon, 21 Jan 2002 10:20:31 - > From: Tim Ward <[EMAIL PROTECTED]> > To: "[iso-8859-1] Mårten Andersso

Re: [PHP] Integer in PHP

2002-01-22 Thread Sukumar S.
Hi, Use intval("2.05"); I hope this will do the needful for you. with regards, Sukumar .S On Mon, 21 Jan 2002, Jerry wrote: > Date: Mon, 21 Jan 2002 13:35:34 - > From: Jerry <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: [PHP] Integer in PHP

Re: [PHP] Passing. Which method to use?

2002-01-22 Thread Sukumar S.
Hi, I'm using sessions extremely to do that. with regards Sukumar .S On Tue, 22 Jan 2002, Floyd Baker wrote: > Date: Tue, 22 Jan 2002 01:17:18 -0500 > From: Floyd Baker <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: [PHP] Passing. Which method to use?

Re: [PHP] Help! (How are sessions intended to work?)

2002-01-29 Thread Sukumar S.
Dear Adam, Are you using 'realm' authentication setup? with regards Sukumar .S On Tue, 29 Jan 2002, Adam wrote: > Date: Tue, 29 Jan 2002 14:47:42 -0600 > From: Adam <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: [PHP] Help! (How are sessions intended t

[PHP] Sablotron broken in 4.2.1 ?

2002-06-03 Thread William S.
Is Sablotron broken in 4.2.1 because none of the transformations have worked that I have tried. I am using: php 4.2.1 apache_1.3.24 expat-1.95.2 my files are: 'wget http://213.84.71.105/news.xml' 'wget http://213.84.71.105/news.xsl' 'wget http://213.84.71.105/news.php'

[PHP] php to open mail compose window

2002-03-02 Thread Paul S.
I thought that a simple php file "email.php" as follows: mailto:[EMAIL PROTECTED]";); ?> might open a compose window and circumvent those spam robots (the robots that search web pages for email addresses for spam lists). 1) If this worked (a href="./email.php) then WOULD spam robots be circumve

[PHP] undefined variable when using if ($var) {}

2002-03-25 Thread Martha S
something I'm missing? Thanks :) -- code--- if ($id) { $result = mysql_query("SELECT * FROM entries WHERE id=$id",$db); $myrow = mysql_fetch_array($result); printf("\n"); printf("%s", $myrow["title"]); printf("%s | ",

[PHP] Re: Login displays the pass and user in url

2002-03-25 Thread Martha S
You have to add an extra tag into the form tag (method="post"), it should read as follows: (" "David Orn Johannsson" <[EMAIL PROTECTED]> wrote in message 003001c1d418$7126b3f0$6500640a@gandalf">news:003001c1d418$7126b3f0$6500640a@gandalf... Can I some how prevent the browser from displayin index

[PHP] WDDX

2002-04-13 Thread Stuart S
Hello List, I want to use WDDX in PHP but I don't have access to the WDDX module. Does anyone know if there is WDDX serializer/deserializer written in PHP? I've been working on one for about a day now, and it works pretty sweet. I'm relatively new to PHP and don't trust using it in commercial proj

[PHP] accessing raw post data

2002-04-15 Thread Stuart S
I'm trying to access data sent to PHP script via POST. But I can't seem to find any documentation on how to do this. Only $HTTP_POST_VARS, but that's not what I want. Anyone know how? Thanks Stuart Schoneveld www.xs4all.nl/~stuartmx -- PHP General Mailing List (http://www.php.net/) To unsubsc

Re: [PHP] setting Check box

2001-03-27 Thread S. Efurd
This worked for me as well, and helped me with a problem I was having! How would you show what option was selected in a drop down box. I have a form the user fills out, this goes to a confirmation page to ensure the data enetered is correct. I have a drop down box for states, and I cant seem to m

Re: [PHP] setting Check box

2001-03-27 Thread S. Efurd
I thought about doing it this way, but repeating this 50 times seems a bit ineffecient, perhaps i am looking for a shortcut that does not exist? I had hoped I was missing something obivious. Thanks Steve - Original Message - From: "Peter Houchin" <[EMAIL PROTECTED]&g

Re: [PHP] setting Check box - THANKS!

2001-03-27 Thread S. Efurd
Thanks, that did it. Steve - Original Message - From: "David Robley" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, March 27, 2001 7:58 PM Subject: Re: [PHP] setting Check box > On Wed, 28 Mar 2001 10:18, S. Efurd wrote: > > This worked for m

[PHP] Is their a function for this?

2001-04-04 Thread Black S.
Basically I have array variables, lets say: --- $folder[0] = "basic"; $folder[1] = "standard"; $folder[2] = "knowledge"; Fruther down in the code: --- $totalsub_basic = "10"; $totalsub_standard = "24"; $totalsub_knowl

[PHP] Properly formatted ereg??

2001-04-10 Thread Black S.
How would I write an ereg to use the value of $PHP_SELF and look for a distinct folder? For instance. say I have: ereg("^/anythinghere/coverage/anthythinghere.html?", $PHP_SELF || ||| So basically it is looking for the "/cove

[PHP] PHP Not Working

2001-06-29 Thread Black S.
Very strange situation, PHP Version 4.0.3 on one of my production web servers has started to loose different functionality?? The OS is Apache/1.3.12 (Unix) (Red Hat/Linux 6.2) PHP/4.0.3 mod_perl/1.21, PHP was compiled as a module with apxs. The strange thing is, some virtual host directories have

[PHP] Function No Longer works

2001-06-29 Thread Black S.
I have found the problem with my previous post and PHP functions no longer working. It seems the code: include("http://www.domain.com/path/to/file.txt";); no longer works? If I type in a complete directory path then it works great, but no Internet include, any one know why? Thanks -- PHP Ge

[PHP] Unix vs PC test for server

2001-08-16 Thread Paul S.
I design a website on a PC, and upload it to UNIX. Of course, there are always one or two variables that I have to keep track of as to whetherteh server is UNIX or PC. There MUST be a simple way to test if (the OS is Windows) { $siteurl = "http:// www.website.com/ "; $mysqlpasswordfilelocation

[PHP] PHP within .html files

2001-08-16 Thread Paul S.
My UNIX apache server that I host from seems to be preset to execute PHP code within html docs. That is, a php require statement within a ".html" file is included, executed, and sent to the browser. Is this unusual? or standard? I ask because I would hope not to become dependent on including php

[PHP] pdflib+pdi

2001-08-21 Thread Jonathan S
Hi, we recently purchased the whole PDFlib+PDI package, however I've been having trouble installing it. Many of the different installation instructions i've found have told me contradictory things. I have tried using both the binary distribution aswell as the source. After many rounds of recompili

[PHP] COM

2001-08-21 Thread Paul S.
I heard refs on using the COM interface to access MS Word files. Is this a procedure an interface that only works on Windows systems (as that is where Word runs)? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

[PHP] Re: Need Help for Session

2004-08-27 Thread S. Kang
4e9e23a4d7b1f061f93e7f172496, O_RDWR) failed: m (2) in c:/program files/abria merlin/apache/htdocs/session.php on line 4 This variable is registered Finding no other way i am sending this email to u. Could u pls tell me what s\could be the problem. and How i can i solve that problem. thanks you very

Re: [PHP] Is there a way to...

2004-10-17 Thread S. Daurer
On Sat, 16 Oct 2004 22:04:33 -0400, Gh <[EMAIL PROTECTED]> wrote: Your right, this is not what I was expecting, I was thinking there was another way... Sounds good.. but any other suggestions? On Sat, 16 Oct 2004 21:40:56 -0400, Minuk Choi <[EMAIL PROTECTED]> wrote: well, this is probably not w

[PHP] How to implement mass emailing?

2004-10-06 Thread Tumurbaatar S.
The scenario is: 1. Site administrator logs into his admin page and writes some message on a form. 2. After clicking submit the web script should broadcast this message to several hundred subscribers. And I'm wonder how to implement this on PHP. Sending an email to each subscribers can take a muc

Re: [PHP] How to implement mass emailing?

2004-10-07 Thread Tumurbaatar S.
Thank you, all! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Request to bash/jump/screw my code

2008-12-08 Thread Ryan S
Hello everyone, Recently I worked on a rather decent sized project and it just went live yesterday. We cannot really afford a security specialist so would appreciate it if you could hit our site with whatever you want to (just dont take us offline with something like a DDOS please) and tell us

Re: [PHP] Request to bash/jump/screw my code

2008-12-08 Thread Ryan S
> Any advise is also most welcome. 'Advise' is a verb. 'Advice' is a noun. No charge. LOL! Thanks! Got caught by the grammar and typo police but no ticket! Must be my lucky day! Cheers! R -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.ne

[PHP] Kinda 0.T... php site and maintenance

2009-01-26 Thread Ryan S
Hey, Got a question for you guys who make a lot of personal sites. I got a US client who wants me to make a personal site, 4-7 "sections" (eg: about me, photos, whats new etc) and have to put a yearly maintenance $$ amount... I thought i'll make most of the stuff using php rather than plain htm

Re: [PHP] Kinda 0.T... php site and maintenance

2009-01-26 Thread Ryan S
etween the chair and the keyboard. - Creativity is great, but plagiarism is faster! - Smile, everyone loves a moron. :-) - Original Message From: Nitsan Bin-Nun To: Ryan S Cc: php php Sent: Monday, January 26, 2009 6:39:19 PM Subject: Re: [PHP] Kinda 0.T... php site and maintenance

Re: [PHP] Kinda 0.T... php site and maintenance

2009-01-28 Thread Ryan S
@Bastien, Stuart: Thanks for your input guys, was very useful and appreciate it. cheers! R -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Beginner Questions regarding Mail and Forms

2007-02-12 Thread Matthias S.
Hi there, I've got two bloody beginner questions: I've created a form with various text input fields. One is to hold a numeric value (age). Upon submission, I try to retrieve the value of this field like this: $age = $_POST['_txtAge']; later, I use the $age variable to create a message... $mess

Re: [PHP] Beginner Questions regarding Mail and Forms

2007-02-12 Thread Matthias S.
AIL PROTECTED]> schrieb im Newsbeitrag news:[EMAIL PROTECTED] > On h, 2007-02-12 at 11:13 +0100, Matthias S. wrote: > > Hi there, > > > > I've got two bloody beginner questions: I've created a form with various > > text input fields. One is to hold a numeric v

  1   2   3   4   5   6   7   8   9   10   >