Re: [PHP] Re: escaping PHP's closing tags

2002-03-27 Thread Erik Price
On Wednesday, March 27, 2002, at 12:03 PM, Julio Nobrega Trabalhando wrote: Haven't seen it either, but you could use: echo '' . '?'; So is separated from ?. Or ? from for the matter. That's a good workaround. I'll use that until I hear from above. Erik Erik Price

Re: [PHP] Query bug

2002-03-27 Thread Erik Price
be sure to customize it for your needs, but this demonstrates what you need to do: Explicitly state the table whose column you want to access. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] while loop: detect next loop?

2002-03-27 Thread Erik Price
to implode. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Query bug

2002-03-27 Thread Erik Price
On Wednesday, March 27, 2002, at 04:28 PM, Daniel Ferreira Castro wrote: This way works, but not the way i would like to. Because it selects just the fields nome,id_proj and arquivo from the table ALGORITMO, and here my goal is to select those fileds of ALGORITMO and ATAS. Then why

[PHP] using a counter in a foreach loop

2002-03-26 Thread Erik Price
a next higher number. The following does not work: foreach ($months) { $i = 1; // do some things $i++; } because in each new iteration of the loop, $i is reset to 1. Is there a way that I can achieve this effect? Thanks for any advice, Erik Erik Price Web Developer Temp

Re: [PHP] using a counter in a foreach loop

2002-03-26 Thread Erik Price
AM, Erik Price wrote: I have a pretty basic question and was wondering if someone could point me in the right direction: I have a foreach loop, where I execute some commands for each element in a certain array. One thing I would like to add to this loop is a counter, so that on each

[PHP] OT - number of chars in querystring

2002-03-26 Thread Erik Price
. Does anyone know the actual limit? If not, is there a generally-accepted maximum that is used (to assure compatibility with most user agents and servers)? Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net

Re: [PHP] cookie problem. Not possible to set and read a cookie on the same page?

2002-03-26 Thread Erik Price
this in one of my scripts was to set the cookie, and then use header(location: samepage.php) to refresh the page -- worked fine, and if all you do is set the cookie before calling header() it should be practically unnoticeable. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL

Re: [PHP] which php book 2 buy ?

2002-03-26 Thread Erik Price
the errors, and can use the book as a guide to writing complex web applications. In my case, though, I started learning PHP with this book, and the frustration with code errors drove me to return it to the store. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED

Re: [PHP] OT - number of chars in querystring

2002-03-26 Thread Erik Price
, Darren. 2048 seems like a workable limit to me. But I'm curious about your suggestion -- how would I get the user inputted data into hidden form variables without submitting the form in the first place? Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED

Re: [PHP] Array in a Loop Question

2002-03-26 Thread Erik Price
it knows how many loops to do (this value is otherwise not available to the second script). Also, the use of doublequotes in the second script ($_POST[address{$i}]) is imperative because with singlequotes the variable $i will not expand to $_POST[address2] or whatever. HTH, Erik Erik

[PHP] OT Re: [PHP] Re: which php book 2 buy ?

2002-03-26 Thread Erik Price
. On Tuesday, March 26, 2002, at 01:51 PM, Rasmus Lerdorf wrote: Or, of course, if you want to be cool like Carl: http://lerdorf.com/buy/ ;) Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] Array in a Loop Question

2002-03-26 Thread Erik Price
to variable value to string again. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] [Session]

2002-03-26 Thread Erik Price
the format: $_SESSION['v_s'] = 500; Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] [Session]

2002-03-26 Thread Erik Price
/language.variables.predefined.php Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Why using this? When....

2002-03-25 Thread Erik Price
for any purpose, not just database access. (It's called passing a variable in the querystring.) HTH, Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Why using this? When....

2002-03-25 Thread Erik Price
On Monday, March 25, 2002, at 09:49 AM, ...::: Rober2.com :::... wrote: Ok, I get it. Exepet passing information there isn't other meaning right? Hm? Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http

[PHP] HTTP, Sockets, and CRLF

2002-03-25 Thread Erik Price
just flexible like that? Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Echo Informative Text will Script Runs - how ?

2002-03-25 Thread Erik Price
) sits in front. When the PHP page has finally loaded, a new JavaScript command to close the page loading window executes, or you could have it close automatically after a certain number of seconds. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP

Re: [PHP] HTTP_REFERER

2002-03-25 Thread Erik Price
, and also you would have to use form buttons rather than hyperlinks (unless you used post_to_host(), see archives if you're not sure what I mean). Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] Trap CR or Enter possible?

2002-03-22 Thread Erik Price
that the value of a submit input is usually just used to label the button in some way (such as value=Click Here for Free Porn!), but you can actually test for this value if you have given the Submit input a name. I may be wrong about this, though. Erik Erik Price Web Developer Temp Media Lab

Re: [PHP] Trap CR or Enter possible?

2002-03-22 Thread Erik Price
hit enter or if they had actually hit the submit button (not as a test to see if the form was being viewed for the first time). IIRC he was having problems determining whether or not the user had hit enter or hit the submit button. Erik Erik Price Web Developer Temp Media Lab, H.H

Re: [PHP] cron with php as apache module

2002-03-22 Thread Erik Price
Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] looking for tutorial on XML parsing of attributes...

2002-03-22 Thread Erik Price
(http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Apache

2002-03-21 Thread Erik Price
: http://compcanlit.ca/ 819-569-2064 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net

Re: [PHP] Session Varaible Problem

2002-03-21 Thread Erik Price
OSX Apache PHP 4+ Thanks, -- Rp -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] Apache

2002-03-21 Thread Erik Price
On Thursday, March 21, 2002, at 12:22 PM, Jason Wong wrote: On Friday 22 March 2002 00:54, Erik Price wrote: Isn't it just a matter of setting the permissions? apache can't have read access to this directory, that's all. No, he doesn't want apache to *list* files in that directory

Re: [PHP] Storing variables

2002-03-21 Thread Erik Price
be a lot of overhead for a multi-part form. I wonder how often this technique is actually done? Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] echo and Session Variables

2002-03-21 Thread Erik Price
, not really an issue for numeric indices. $input[$c] Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Database Development Price Inquiry?

2002-03-21 Thread Erik Price
. ... Any feedback would be greatly appreciated. 40 hrs at $11/hr, no overtime, no benefits. But I get to learn PHP. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] HTMLnetscape issue

2002-03-20 Thread Erik Price
This code works EVERYWHERE (in all browsers) but Netscape Navigator 4.xx versions. You're fighting an unwinnable battle. Give up on Crapscape 4.x, it is full of bugs. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http

Re: [PHP] Multipage form

2002-03-20 Thread Erik Price
to fill out the same form later and see all of their old values from their session. Good luck Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] cvs data PHP

2002-03-20 Thread Erik Price
of the file, and reads its contents. (This is because I actually want the PHP script to parse the XML and do later things with this info.) Does anyone know how this is done? Rather, can anyone point me to a tutorial or resource on this topic? Thank you, Erik Erik Price Web Developer

Re: [PHP] Fwd: html form select list selected

2002-03-20 Thread Erik Price
=\true\Display/option option $select_if_false value=\false\Don't Display/option /select /form; // print the form print $form_html; HTH Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] Mac Classic and PHP...

2002-03-19 Thread Erik Price
you made them seems like the best thing they could do. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Making a simple borderless pop up window with a Close button

2002-03-19 Thread Erik Price
hours, JavaScript is code that is executed by the user's browser (as opposed to PHP which is code executed by the server), which provides the ability to manipulate browser objects like windows. I don't know much JavaScript so I can't answer your question directly, sorry. Erik Erik

Re: [PHP] Making a simple borderless pop up window with a Close button

2002-03-19 Thread Erik Price
button mentioned above, you can actually bring back scroll bars, nav bar, and window-resizeability. But I'm glad to know that this isn't a true JavaScript feature, rather an MSIE extension of sorts... Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General

Re: [PHP] mysql - php help

2002-03-19 Thread Erik Price
for string columns since spaces are tokens in this case [I think]). HTH, Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] SESSION PROBLEM

2002-03-19 Thread Erik Price
whitespace being sent on accident (an extra line in an .inc file, or an extra line before the ?php at the top of the page...). Make sure your session_start() function is before any HTML output, whitespace or no. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED

Re: [PHP] HTML (to XML?) to PDF

2002-03-19 Thread Erik Price
said came out somewhat confusing -- If your initial document is in XHTML form, you should be able to use XSLT, since XHTML is a form of XML. HTH, Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net

Re: [PHP] Return the column names of MySQL table?

2002-03-19 Thread Erik Price
On Tuesday, March 19, 2002, at 05:43 PM, Kevin Stone wrote: I simply need to return a list of column names of a MySQL table. What's the syntax to do that? SHOW COLUMNS FROM tablename; Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing

Re: [PHP] converting html entities outside of tags

2002-03-18 Thread Erik Price
On Friday, March 15, 2002, at 03:17 PM, Alain Dresse wrote: I want to allow the users of my site to insert text with anchors, bold and italic html tags. I have filtered out all the other tags. I now want to convert the other , , quote, double quote and to html entities. If I use the

Re: [PHP] Driving me nuts, need one second of your time

2002-03-18 Thread Erik Price
. You're declaring your connection parameter as a string db and you probably want it to be a variable $db. Make sure this variable contains a database connection pointer. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http

Re: [PHP] XSLT parsing causes passed by reference error

2002-03-18 Thread Erik Price
functions). Good luck, and btw by annotations I meant the user-input at the bottom of every PHP man page. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] new_xmldoc won't work?

2002-03-18 Thread Erik Price
read the man page for xmldoc() and it doesn't seem like that's what you're using here. I didn't find any reference to a function called new_xmldoc(), though I did see a big disclaimer that the DOM-using XML functions in PHP are subject to change and are somewhat unstable. Erik Erik Price

Re: [PHP] Appropriate headers for Forcing download on IE/Mac and open with stuffit?

2002-03-18 Thread Erik Price
with IE on Windows. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] object reflection in php?

2002-03-18 Thread Erik Price
-return_field_name(); ? This might not work, I don't know much about OO. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Sessions and enable-trans-sid

2002-03-18 Thread Erik Price
is there a file in the /tmp file nor does my URI change with a session id Are you forgetting to put the buck ($) in front of _SESSION['varname'] ? Looks like it from the example you give above, unless that's a typo. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED

Re: [PHP] unscriber please

2002-03-18 Thread Erik Price
to attach to an unsuccessful UNSUBSCRIBE request! :) If you still wish to unsubscribe, see the very last line of this email. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] PHP CGI

2002-03-18 Thread Erik Price
language. It's easier to say CGI, but you refer to something very specific when you do. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Sablotron and LINUX trouble

2002-03-18 Thread Erik Price
if you want. Let me know how this works for you -- it'll take you less than a half hour from start to finish to do all this. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] printing in HTML or PHP

2002-03-18 Thread Erik Price
=\default.css\ /; ? E Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] U.S. Section 508 Guidelines

2002-03-18 Thread Erik Price
the requirements of 508. Unless there's a problem with the parser at www.cast.org/bobby, the best (and most ethical, IMO) thing you can do is conform to 508 as required and not subvert the parser. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing

Re: [PHP] MySQL and indexes

2002-03-18 Thread Erik Price
, you're not making the most of what your RDBMS gives you to work with. Strongly recommended book: MySQL by Paul DuBois (New Riders). Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP] printing in HTML or PHP

2002-03-18 Thread Erik Price
On Monday, March 18, 2002, at 03:49 PM, Daniel Ferreira Castro wrote: I need to use it with fwrite not print :-) Erik Price [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... On Monday, March 18, 2002, at 02:57 PM, Daniel Ferreira Castro wrote:

Re: [PHP] Working with IP addresses

2002-03-18 Thread Erik Price
Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Mac Classic and PHP...

2002-03-18 Thread Erik Price
free ODBC drivers that will let them contact to MYSQL or Filemaker pro. Yeah, I need to run PHP from my Atari 800 too. Can someone send me a binary? :) Good luck, Chuck! Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http

Re: [PHP] Mac Classic and PHP...

2002-03-18 Thread Erik Price
. Then again, it might be like those movies that you remember so fondly as a kid but then you see again fifteen years later and you're like what was I thinking? The memory ends up being better than the reality. My Atari is best left in my attic... :) Erik Price Web Developer Temp Media Lab

Re: [PHP] PHP Is Inserting (the same) Database Record Multiple Times In My HTML Output

2002-03-15 Thread Erik Price
known errors is really not as good a solution as finding out what is causing the error and fixing it... of course, sometimes in a pinch you have to MacGuyver the thing I guess. Just some advice :) Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP

Re: [PHP] Targetted redirection?

2002-03-15 Thread Erik Price
A to be their _top ? Good example. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] getting values from multiple select

2002-03-14 Thread Erik Price
This might work for you, Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Targetted redirection?

2002-03-14 Thread Erik Price
what you want... but in all honesty I haven't learned much JS so even I don't really take this route. It's just a theory. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Re: getting values from multiple select

2002-03-14 Thread Erik Price
or check for 'none selected' Such as if ($_POST['multi']) { // loop thru the array and extract the values } else { // there were none selected so don't loop thru // the array (or you'll raise an error) } Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP

Re: [PHP] getting values from multiple select

2002-03-14 Thread Erik Price
will be passed to the receiving script. Use the above techniques to make sure that you are actually passing more than one value. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] get the greatest key of an array???

2002-03-14 Thread Erik Price
in the array. Python, incidentally, has a neat way of doing this: array[-1] (of course they're called lists, not arrays, in Python). Just a side note. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net

Re: [PHP] DHTML Trouble please help

2002-03-14 Thread Erik Price
scripting languages and plugins like JavaScript, Flash, CSS tricks, and even server-side manipulation to achieve an effect. There's a lot of stuff on this topic at http://dhtmlcentral.com/ if you're interested. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED

Re: [PHP] getting values from multiple select

2002-03-14 Thread Erik Price
? Thanks, -Scott Sure! First go get a cup of coffee! :) Then change the first line to say this: select multiple=yes name=groups[] id=av Let me know how that works for you. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http

Re: [PHP] textarea/textarea

2002-03-14 Thread Erik Price
solve your problem? I'm interested in hearing about it. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] session problems

2002-03-14 Thread Erik Price
['pass']; // use $_GET if you are using that method mysql_close($link); header(location: http://pinguim/pb/s_proj.php;); HTH, Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] XSLT parsing causes passed by reference error

2002-03-14 Thread Erik Price
workarounds. Be sure to post the results of your experimentation for the benefit of the rest of us. Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] repost: appending to text file

2002-03-14 Thread Erik Price
data storage tricks, though sometimes it's overkill to do so (depending on the extent of your project). Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Online Feedback and Application

2002-03-14 Thread Erik Price
of feedback it -could- get out of hand. And email is another option. PHP lets you do all of this. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] include() question

2002-03-14 Thread Erik Price
that you can use variables or strings in many cases -- just remember that the variable expands to the string BEFORE being processed by the function. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net

Re: [PHP] Use of $_SESSIONS in PHP 4.1.2 with register_globals off

2002-03-14 Thread Erik Price
Associates, Inc. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP] include() question

2002-03-14 Thread Erik Price
Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] include() question

2002-03-14 Thread Erik Price
... sorry Erik, didn't read your question right... Edward - Original Message - From: Jan Rademaker [EMAIL PROTECTED] To: Erik Price [EMAIL PROTECTED] Cc: Edward van Bilderbeek - Bean IT [EMAIL PROTECTED]; Phil Schwarzmann [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Thursday, March 14

Re: [PHP] re: passing inputs

2002-03-13 Thread Erik Price
to this script from another script, not for accessing variables that have been defined within this script. This may have been overly explanatory and confusing, but if you have a question about it, ask us. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP

[PHP] --enable-xslt

2002-03-13 Thread Erik Price
? It seems like it. If anyone has a resource or somewhere I should be looking, please by all means point me in the right direction. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Targetted redirection?

2002-03-13 Thread Erik Price
and THEN call the header() function from there... but that's more of a workaround than a solution. Good luck, sorry I don't have any other ideas. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] --enable-xslt

2002-03-13 Thread Erik Price
On Wednesday, March 13, 2002, at 01:58 PM, Anas Mughal wrote: http://www.devshed.com/Server_Side/XML/XSLTrans/print Actually, that's the very tutorial that led me to ask about installing with XSLT configure parameters. I'm building it now, as I write this. But I was wondering about some

Re: [PHP] undefined symbol: compress during install?

2002-03-12 Thread Erik Price
out on 2-3 occasions... Thank you, I didn't even know that virtual host existed. I'll definitely check there too next time I'm having problems. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] Re: reset auto_increment field mysql

2002-03-12 Thread Erik Price
to the mysql-users mailing list. Within a few hours, I got the solution from a couple of people, including the author of this book himself. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP] Re: Variables within a string

2002-03-12 Thread Erik Price
states this :) I thought that it could be done like so: $foo = Entry for {$HTTP_POST_VARS['name']}; Sorry for butting in, Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] --with-xml set by default?

2002-03-11 Thread Erik Price
in the first place by using this option? Thanks, Erik (PS: talking about a source install on Linux) Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] undefined symbol: compress during install?

2002-03-11 Thread Erik Price
is gratefully appreciated! Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] [root@media /]# /usr/local/apache/bin/apachectl stop [root@media /]# /usr/local/mysql/bin/mysqladmin -u root -p shutdown [root@media /]# pushd /usr/local/src /usr/local/src /usr/local/src

Re: [PHP] undefined symbol: compress during install?

2002-03-11 Thread Erik Price
On Monday, March 11, 2002, at 05:21 PM, Erik Price wrote: I just finished doing my re-install of PHP, updated to 4.1.2. Or so I thought... everything went smoothly, I got all the right success messages during the ./configure and make processes, and thought I was ready to go -- but as I

Re: [PHP] A silly question. :P

2002-03-08 Thread Erik Price
of the if statement. Either var exists or it doesn't; } (!(Hope that doesn't help)), Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] BIG PROBLEm with headers

2002-03-08 Thread Erik Price
on the certificate rather than 1024. IE5 has known problems with SSL. Some sites (sourceforge.net) use SSL only to authenticate the user, letting them back out of secure-mode after authentication succeeds, if the useragent is IE5. It reduces the potential for problems. Erik Erik Price

Re: [PHP] Again Session

2002-03-08 Thread Erik Price
On Friday, March 8, 2002, at 01:15 PM, Sven Jacobs wrote: Hey I have 2 values stored in my session, how do I pull them back out ? $_SESSION['name_of_first_value'] $_SESSION['name_of_second_value'] in PHP 4.1 or greater. And hay is for horses. Erik Erik Price Web Developer

Re: [PHP] session_id database

2002-03-08 Thread Erik Price
of anyone using a mysql database to manage session_id's? No. http://google.com/search?hl=enq=session+management+php+mysql Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Re: Help needed with speading up a function.

2002-03-08 Thread Erik Price
should be a more rational number) Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php, text file, and mysql

2002-03-07 Thread Erik Price
without a file, and in the second you want a file without contents! :) Unless someone else figures out what you want and helps you, ask again but describe what you want a little bit more. PHP can do a lot of things. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL

Re: [PHP] Rasmus, O'Reilly, Programming PHP

2002-03-07 Thread Erik Price
you hear anything more about this? Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] mktime() into TIMESTAMP ?

2002-03-07 Thread Erik Price
performed on their values, but perhaps I'm completely off-base. My SQL skills are miserable... I need to brush up. (Too much time spent learning PHP lately!) Your take/critique welcomed! More like questions than critique! Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL

Re: [PHP] Add associative element to an an array

2002-03-07 Thread Erik Price
with no luck (it either increments the key or doesn't work at all). Have you tried just directly setting this array element? You don't say what your array is named, so I'll call it $array. $array[8] = 6; Is that what you are talking about? Erik Erik Price Web Developer Temp Media Lab, H.H

Re: [PHP] php, text file, and mysql

2002-03-07 Thread Erik Price
locating those files in the filesystem, remembering the path to the file or something. I think this is how a lot of web sites incorporate graphic content in with their database (text) content (including mine). Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED

Re: [PHP] Rasmus, O'Reilly, Programming PHP

2002-03-07 Thread Erik Price
don't usually use (there's a Barnes and Noble and a Borders near me if I want to read), but in this case would be nice. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Session_start()

2002-03-07 Thread Erik Price
googled that (but I think I will read it later). Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Is there a GoTo Page Function?

2002-03-06 Thread Erik Price
On Wednesday, March 6, 2002, at 01:10 AM, hugh danaher wrote: My wife knows I spend too much time in here. What's a wife? Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Is there a GoTo Page Function?

2002-03-06 Thread Erik Price
into a function. Erik Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

<    1   2   3   4   5   6   7   >