Brad Wright wrote:
Erik,
thanks, are you able to pint me to some good reference sources on
tokenizer's... i have never come across them before
I have been scouring the web, and am coming up a decided blank. :)
The only tokenizers I have used are the StringTokenizer and
StreamTokenizer classes
Brad Wright wrote:
Thanks for the reply Rene,
Any change of a code sample of how u did this?? Im not at all experienced in
Java.
According to the manual, PHP does have some tokenizer functions:
http://www.php.net/manual/en/ref.tokenizer.php
However, the documentation appears to be lacking as t
Marc Bakker wrote:
Hello all,
I installed PHP, Apache and MySQL. I read the install.txt file that came
with php and changed the default values in php.ini and httpd.conf. When I
restart Apache and type my local website (127.0.0.1/index.php) IE comes with
a 'Save file As' dialog box.
Instead of pa
vernon wrote:
I think that maybe I should explain the fist Zip comes from a session, here
I've defined the variable. I use the caluation in the code to get the
distance and then loop the recordset so that the distance is created each
time the record loops through. I have taken many things from
CF High wrote:
Hey all.
I was under the impression that PHP processes all php code first before
handing HTML processing over to the browser.
http://www.php.net/manual/en/ref.outcontrol.php
Erik
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.
Bryan Koschmann - GKT wrote:
Hello,
I have gotten used to using .htaccess to protect files/directories, but
now I am looking at a need to authenticate against mysql. I have no
problem actually getting it to authenticate, but I'm wondering what the
simplest way to prevent someone from hitting any
Vernon wrote:
Use the distance you've calculated as the numeric index of an array,
pointing to
the record that corresponds to that distance.
Can you please expalin this statement? Perhaps a tutorial somewhere?
I could explain it better if you could post the code that you have so
far which ex
Vernon wrote:
I am calculating distances between to record's zip codes using php and have
a need to sort the recordset by that value. How do I do something like this?
I mean it's not a value in the table that I can use the SQL ORDER BY
statement. I want to be able to have the distances closest to
Beauford.2002 wrote:
I am looking for a simple authentication script that uses MySQL. I have
downloaded about 10 of them (most with no instructions on it's use), but
even at that they are not what I need.
The PEAR project has 7 different authentication packages, including Auth
which I understand
Jim Greene wrote:
Hi All,
I have a text file that has entries like the following:
user1:mbox1:
user1:mbox2:
I basically do: $mboxs = `cat file | grep user1 | cut -d: -f2';
I then want to print out the data in the $mboxs variable (array)
I am trying to use foreach but it does not work.. I
Daniel McCullough wrote:
Yes sorry for not being clear. I am trying to use exec() and system().
I guess I'm trying to see if there is another way to do it, like write
to a file and have acron job run every minute or so, or if there is some
way to make it seem like I am doing this with the rig
Bix wrote:
I have a for loop within a for loop, and need to break out of both
together...
for ( blah ) {
for ( blah ) {
if ( true ) { break; } // only breaks out of this loop, how can I break it
out of both loops.
}
}
"break accepts an optional numeric argument which tells it how many
nested
Daniel McCullough wrote:
Where I am having problems at is when they need to update the poppasswd,
which is a IMAP or QMAIL file. Plesk has files that will update the
system, but it seems that I using the exec() and system() I can access
those pl files. From the command prompt it works fine,
[EMAIL PROTECTED] wrote:
Ok, here's what I got. I'm trying to create an entire site that grabs
all it's information (Page content, titles, link info, etc.) from a
MySQL database. In this site I would like to have sub pages of master
pages. For instance, Page 1 is a master page, Page 2 is a
John Taylor-Johnston wrote:
Captn John,
What the difference? I recognise the code from my attempts at Perl. What's the diff
between ^ and *? Is there a doc I can read up more on?
;) Swabbie John
"Cpt John W. Holmes" wrote:
What about
eregi("TI(.*)¶",$line,$m)
might want to use
eregi("TI([^¶
CPT John W. Holmes wrote:
Well, the first part is out your butt... :)
Yep. I tested it after making the assumption, sure enough I was WRONG.
I've got to keep my butt under control, it's getting a little out of hand.
To the OP, sorry 'bout that.
Erik
--
PHP General Mailing List (http://www
Erik Price wrote:
If you had a constant named "somefile" or "php" and you use the second
syntax, the constant would be interpolated/evaluated to the value of the
constant.
Generally I always use single quoted strings unless there's some need
for double-quoted s
Charles Kline wrote:
What is the difference as in... why one or the other?
include('somefile.php');
include("somefile.php");
Just wondering...
If you had a constant named "somefile" or "php" and you use the second
syntax, the constant would be interpolated/evaluated to the value of the
const
Kevin Stone wrote:
Actually as far as the computer knows strings *are* arrays. Access any
character within a string in the same mannor as you would access an element
in an array. For example:
$str = "hello world";
echo $str[4]; // prints o
echo $str[6]; // prints w
That works but is deprecated
Bix wrote:
Is it possible to look at individual chars of a string?
eg: $str = "12345";
print $str_1 // Gives "1"
print $str_2 // Gives "2"
Try this:
print $str{0}; // gives "1"
print $str{1}; // gives "2"
Erik
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http
Brad Harriger wrote:
I have two variables, $StartDate and &EndDate that contain values read
from MySQL Date fields. How can I determine if a value entered by the
user is between the two dates? I'm using PHP 4.0.6.
if ($user_input > $StartDate &&
$user_input < $EndDate) {
// do som
Poon, Kelvin (Infomart) wrote:
I know this topic was discussed but I deleted my previous mail so I can't go
back and review them.
STFA: http://marc.theaimsgroup.com/?l=php-general
My question is, is there a faster way to redirect
html pages other than just using ? Is there any way we can do
bill wrote:
Hi André,
Sorting like that doesn't get it sorted by date. Each row has a lot of fields. It
actually needs to be sorted three times by three fields, Year, Month, and Day.
Because the query uses a GROUP BY statement, I can't sort it in the query.
MySQL offers a DATE column type. Yo
, but it doesn't apply to singlequotes. I suppose I could
str_replace it, but I'm wondering how other people handle this
situation
--
Erik Price
email: [EMAIL PROTECTED]
jabber: [EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
describe your table's relationship to other
tables.
(In a table named "registrants", you could have the comment
registrants.user_id = users.user_id
)
http://www.mysql.com/doc/en/CREATE_TABLE.html
Erik
--
Erik Price
email: [EMAIL PROTECTED]
jabber: [EMAIL PROTECTED]
--password
Erik
--
Erik Price
email: [EMAIL PROTECTED]
jabber: [EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
eason (knowingly) and therefore can be considered the
most dangerous segment of users. (Knowledge being power and all.)
Erik
--
Erik Price
email: [EMAIL PROTECTED]
jabber: [EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
namespace? Or does it even do this with methods?
Just curious so I don't depend on anything I'm used to from other
languages thanks!
Erik
--
Erik Price
email: [EMAIL PROTECTED]
jabber: [EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
lidPhoneNumber($phone)) {
375 $this->phone = $phone;
376 }
377 }
I am using PHP 4.3.0 on a RedHat machine with Apache 1.3.x.
Thanks for your help, it's been a while since I've used PHP!
Erik
--
Erik Price
email: [EMAIL PROTECTED]
jabber: [EMAIL PROTECTED]
--
PHP G
$rest_of_number = $matches[2][0];
Try that, but it's untested.
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
ter class. It represents
any *one* of the contained characters. But not more than one. So there
is no following at all, since for all intents and purposes the character
class matches a single character (unless you use a qualifier like +, ?,
or *).
Erik
----
Erik Price
Web Developer T
.htaccess file can be used. (This is
assuming you are using Apache.)
Go to www.apache.org and read the httpd documentation there for more
information about setting up the document root in httpd.conf.
Erik
Erik Price
Web Developer Temp
Media Lab, H.H. Brown
[EMAIL PROTECTED]
--
PHP
data on each iteration
while ($row = mysql_fetch_assoc($result)) {
echo $row_RsSingStanDailybb['DailyBB'];
}
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
d/strip a requirement, not a security precaution.
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
ed or slashed?
Turn off magic_quotes and do addslashes() explicitly every time you do a
database insert. Then make sure you always stripslash() data returned
from a database query.
magic_quotes is convenient for newbies, but after a while you'll find it
only trips you up, as you've discover
g a tiny bit extra memory to deal with
the array:
$arr = array();
foreach ($_POST as $key => $val) {
$arr[] = $key . '=' . $val;
}
$str = implode('&', $arr);
Erik
Erik Price
Web Developer Temp
Media Lab, H.H. Brown
[EMAIL PROTECTED]
--
mplement this yourself with
database-managed persistence (but beware the overhead).
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
It's not
-secure-, since anyone can remove this flag (even if you used POST), but
it will work for Joe User to stop him from accidentally resubmitting.
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
rgon File so maybe
it's OT but I'm curious.
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
ne giant script.
But one thing I have learned is that everyone has a different approach
to writing code, and objects may not be your thing -- that's okay.
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
case why not pay an ISP to host your own server?).
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
parameters, and
// set the variables from the file to
// their corresponding values
foreach ($this->parameters as $key => $value) {
$template_name = '[' . $key . ']';
$this->finalOut
e PCRE regex syntax, this should do it:
$output = preg_replace('!^\${1,2}\w+$!', "$1", $var);
because "\w" is the same as "[A-Za-z0-9_]" (though perhaps it is in
POSIX regexes too).
Erik
Erik Price
Web Developer Temp
Media Lab, H.H. Brown
ly write a Perl script (most hosts have Perl)
to do whatever it is that needs to be done and have cron execute that,
this saves you from a whole window of exploit (the web server). But if
you don't have Perl or don't know Perl, that's a problem.
Good luck,
Erik
E
commands. But all is not lost. You can have the cron
job execute a shell script that executes lynx or links or wget, or even
just executes the command directly from the cron job, and have that
lynx/links/wget request a PHP script that does what you want done.
Erik
----
Erik Price
Web
quot;intranet", as
they call it, so is not really public, so I feel okay about doing dev
work on it. I'm also kind of an amateur.)
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
globals? I had to retool all of my
> scripts. =/
IMHO you're better off, but yes, if you set register_globals = on then
you shouldn't need to have retooled your scripts. Did you restart your
webserver after you adjusted php.ini?
Erik
Erik Price
Web Developer Temp
Media Lab
tup...
even filenames are valuable to maleficants.
I recommend setting your php.ini to E_NONE and then putting
error_reporting(E_ALL) at the top of each of your scripts, and then when
the file is migrated to production, comment or remove the line.
Erik
Erik Price
Web Developer
body of a
script, but if you can wrap everything into smaller scopes, it's not
such a big deal. IMHO. This applies to a lot of variable names, in
fact. But I agree, in the main body of the script (global scope) it is
best to be descriptive.
Erik
Erik Price
Web Developer Temp
an upgrade you can use as a
guide if you want.
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
te line
breaks for your server? In some cases, a file may have DOS/Windows or
Macintosh line breaks which are not \n but rather \r\n and \r
respectively IIRC.
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
e enters the same "name" value twice,
too. But it's not really a big deal unless you're doing a lot of work
with a lot of data.
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
mp;" sign AND a "number with more than 1 digit"
If you only want it to match if there is BOTH an "&" sign AND a "number
with more than 1 digit", it should be like this:
preg_match('/siteUserList.cgi\?group=site177(&\d\d+)?/', $QUERY_STRING)
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
which one and how do I use it?
I'm assuming you mean sending some querystring data, like
header("Location: http://domain.com/page.php?data=contents";);
if so, then yes, you will end up with the string 'contents' in a
variable called $_GET['data'] .
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
On Monday, July 1, 2002, at 11:09 AM, BB wrote:
> OK, this is a 3x3 table pasted in from word!
It is against the rules to post HTML code generated by Microsoft Word.
Erik
----
Erik Price
Web Developer Temp
Media Lab, H.H. Brown
[EMAIL PROTECTED]
--
PHP General Mailing List (h
o use JavaScript to set a cookie, and/or make
a new request with GET or POST data attached. If not, let me know.
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
web server user and the web server user can read
all those files.
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
l=php-general&m=102503848224300&w=2
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
7;s group association to
"websecret", you probably need to be either root or a member of
"websecret", unless the system admins have provided some kind of script
that does this on your behalf. Which means that anyone else who has
this ability can read the file too (since
insert;
> }
> my probleme is in some case $lastname="" is true and other case is
> false.
> I tried with $lastname=" " but no change. how can I check if a varible
> is
> empty or not?
http://www.php.net/empty
Erik Price
Web Developer Temp
Media L
rs can provide a script (SUID) that allows a
user to change the group association of the file to that of the web
server? Yet without making the user a part of the group itself,
otherwise all users would be able to see all of these files...
Erik
Erik Price
Web Developer Temp
Media Lab, H
s you have, re-extract the
tarballs, totally. Not just for the modules but for Apache too. It's
just easier unless you have customized code in your Apache source tree.
Erik
Erik Price
Web Developer Temp
Media Lab, H.H. Brown
[EMAIL PROTECTED]
--
PHP General Mailing List (http
n't say that
> links/urls shouldn't be formatted like the first example above...
I think it is okay as long as you are staying within the same virtual
host.
Erik Price
Web Developer Temp
Media Lab, H.H. Brown
[EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To
On Thursday, June 27, 2002, at 12:48 PM, Shane wrote:
> I would like your opinions on the best way to implement an "Are You
> Sure You Want To Do This?" dialog for an Admin user when they go to
> delete a record in a DB.
>
> Do you find that a whole page is usually required for this, or does
new PhotoItem($row['photoitem_id']);
$photos_string .= $photo_obj->display();
$photo_obj = null;
unset($photo_obj);
}
// do something with $photos_string
Erik
Erik Pr
e everyone's using IE" or
whatever, but then something like AOL's decision to use Mozilla as its
internal browser engine comes along and changes the whole paradigm.
Boom, you now have to change your entire site because now most people
aren't using IE.
Coding to the stan
s my plan to properly model this project and rewrite it in
Java as an exercise. Maybe not implement every single detail, but get
the bulk of it.
Life is one big learning exercise anyway
Erik
Erik Price
Web Developer Temp
Media Lab, H.H. Brown
[EMAIL PROTECTED]
--
PHP Gener
On Thursday, June 27, 2002, at 04:44 AM, Andrew White wrote:
> On Wednesday, June 26, 2002, at 04:48 pm, Erik Price wrote:
>
>> My problem is that I have no way to know which type of object to
>> instantiate in advance -- all I have is this primary key. Using the
t easier to use mysql_fetch_object().
http://www.php.net/manual/en/function.mysql-fetch-object.php
Or maybe not. It's a matter of preference and performance (I think the
object version is a bit more expensive).
Erik
Erik Price
Web Developer Temp
Media Lab, H.H. Brown
[EMAIL
daemon, safe_mysqld can only be executed from
/usr/local/mysql)
/usr/local/apache/bin/apachectl start
(start Apache)
Then test to make sure that MySQL and Apache are working by requesting a
phpinfo() page or MySQL-generated page.
Erik Price
Web Developer Temp
Media Lab, H.H. Brown
[
ods to the code.
Justin,
Out of curiosity, why is it only expandable to 1000 records? What
happens after that? I thought that (in theory) you can keep going with
this kind of scheme. Or is there a limitation in MySQL that I'm not
aware of... ?
Erik
Erik Price
Web Developer
test/73things_thread.php?threadID=15
Even though the threadID GET value is different in each one, the same
data is coming up. So you need to check your back end code.
Erik
Erik Price
Web Developer Temp
Media Lab, H.H. Brown
[EMAIL PROTECTED]
--
PHP General Mailing List (http:/
t I am unsure of what
purpose the "object" type reference has.
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
On Wednesday, June 26, 2002, at 03:37 PM, Doug Coning wrote:
> I have a php page that return rows from a database. I then have an href
> link to the individual thread as such:
>
> target='_blank'>".
>
>
> This works, it opens a new window which has the detailed information
> needed.
> Howeve
quot;form" tag.
> I have one website that use session. Like session_start(),
> session_register(), etc. How would this be affected and what is the
> work
> around to this one.
You now refer to a session variable as $_SESSION['variablename'].
Erik
E
nding to you, whether it's GET, POST, or COOKIE, is data that they can
see.
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
quot;localhost/image.gif", and the second
one requires the file at "www.domain.com/image.gif".
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
x27; attribute of the 'option' tag):
print "
One
Two
\n";
In the "test.php" page, the selected value will be found in the
$_POST['example'] variable.
Erik
ls and a
million other configuration directives are decided...
?
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
ask to make yours system more secure.
http://www.w3.org/Security/Faq/
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
or any software
you upgrade -- this is mentioned in the PHP 4.1.x release notes if you
want to read them for yourself.
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
.
Just try it.
for ($i = 0; $i < 10; $i++) {
$var{$i} = $i + 6;
echo "\$var$i == " . $var$i . "\n";
}
$var0 = 6
$var1 = 7
$var2 = 8
$var3 = 9
$var4 = 10
$var5 = 11
$var6 = 12
$var7 = 13
$var8 = 14
$var9 = 15
Erik
Erik Price
Web Developer Temp
Me
ling xml or something. So, is xml
> in
> php supported automatically?
Yes. Since 4.1.x at least. But for XSLT you need to get expat and
Sablotron and link them into the compile (with the appropriate
./configure options).
Erik
Erik Price
Web Developer Temp
Media Lab, H.
ropriate subtype
Is that possible in PHP Namely, the casting above?
Or does my client code need to be able to figure out which type of
project it is (say, from the DB) and then use this to determine which
object type to instantiate?
Thanks very much,
Erik
Erik Price
Web Develo
($data_to_send) . "\n");
fputs($fp, "Connection: close\n\n");
fputs($fp, $data_to_send);
while(!feof($fp)) {
echo fgets($fp, 128);
}
fclose($fp);
}
Erik
Erik Price
Web Developer Temp
Media Lab, H.H. Brown
[EMAI
consistently refuse to ship a decent JVM with their OS, even though they
are freely available from the Sun web site).
That's why server side stuff like PHP will probably always be invaluable.
Erik
Erik Price
Web Developer Temp
Media Lab, H.H. Brown
[EMAIL PROTECTED]
--
PHP G
t have any problems...
Plus IIRC it's a C extension so it'll run faster anyway.
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
be pretty easy to
extract the data from it without writing special code to handle these
kinds of exceptions.
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
at fetches the file (therefore it needs to be in the docroot). But
mod_php is faster than CGI PHP and can handle more simultaneous
requests. Right?
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
lwindow.moveTo('150', '150');
}
Now in your new script you can access these GET vars from PHP or from JS!
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
tuff. Always feature an exit() with a header-based
redirect.
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
nt...
only checked boxes are sent. So you need to check for the presence of
variables if you are going to unset() the unchecked boxes, or determine
the unchecked values based on what is NOT checked, etc.
Good luck
Erik
Erik Price
Web Developer Temp
Media Lab, H.H. Brown
[EMAIL
(I would just throw 'em in arrays)
3. determine which array should populate the second listbox based on the
input in the first listbox using JavaScript event handlers in the first
listbox
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
ge the
file to the "apache" group unless you are a member of the "apache"
group, but if you are a member of the "apache" group then you can see
all of the "protected" files in that group).
Also I have a directive that prevents Apache from serving any file
d enable
that one instead.
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
On Tuesday, June 25, 2002, at 03:22 PM, Erik Price wrote:
> However, I don't like using $_SERVER['QUERY_STRING'] because if there
> are empty GET variables, it grabs them. So, if you prefer, you can do
> this:
>
> $getVarsArr = array();
> foreach ($
prefer, you can do
this:
$getVarsArr = array();
foreach ($_GET as $getVarName => $getVarVal) {
$getVars[] = $getVarName . "=" . $getVarVal;
}
$getVarsStr = implode("&", $getVars);
$request = "http://"; . $_SERVER['HTTP_HOST'] . "/" .
$_SERVER['
;;
if (preg_match('/@/', $str)) {
print "$str does contain the '@' symbol.\n";
}
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
l with varying ending tags, then you'll have to come up
with a creative method for capturing them and storing them, then
dynamically determining their length and do the same thing, then append
the ending tag (whatever it may be). I would use regexes to do this
part.
Erik
Erik
On Monday, June 24, 2002, at 03:51 PM, Erik Price wrote:
> sudo find / -name 'php.ini' -print
Clarification: substitute the search string with 'php-ini.dist' if you
haven't yet configured it. Note that Macs, although they ship with PHP
pre-installed, are miss
1 - 100 of 637 matches
Mail list logo