properties
for that current window, but it would be sumpler if i could use
$test->windows($id)->showID() and if no var is there, show all...any ideas
on how to do this?
Thanks heaps
Luke
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
smax));
}else{
$string .= chr(rand($lowercaselettersmin, $lowercaselettersmax));
}
$length--;
}
return $string;
}
function createType(){
srand ((double) microtime() * 845676);
$tid = rand(0, count($this->types)-1);
return $this->types[$tid];
}
function createCount
i forgot to mention, that being a class, you should be able to set any of
the variable you want (either on class creation: new honeyPot($value1,
$value2, etc); or with the class variables, $spambot = new honeyPot;
$spambot->addresses = 50; //amount to create)
Luke
--
PHP General Mailing L
t;.gn",".gp",".gq",".gr",".gs","
.gt",".gu",".gw",".gy",".hk",".hm",".hn",".hr",".ht",".hu",".id",".ie",".il"
,".im&quo
news.php.net
and subscribe to the group php.general
make sure you have all your email addresses and stuff setup in the account
because it may ask you to send a confirmation
no user/pass required
--
Luke
"Bigmark" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
H
Yeah, i had a similar problem, i dont know if its the same, but i found that
adding
in the head of the html output fixed it
Luke
- Original Message -
From: "Louie Miranda" <[EMAIL PROTECTED]>
Newsgroups: php.general
To: <[EMAIL PROTECTED]>
Sent: Wednesday, Dec
i use
echo "\n";
echo "javascript:top.location.href='{$placetogo}';\n";
echo "";
and if you want to refresh a specific frame, replace top in the script for
the frame name
--
Luke
"Christian Jancso" <[EMAIL PROTECTED]> wrote in m
that should do it :)
uend: " . $uend;
while($ufirst <= $uend){
//do other stuff here, insert into database etc
$ufirst = strtotime("+1 day", $ufirst);
$formatted = date("d/m/Y", $ufirst);
echo "ufirst: " . $ufirst . " : " . $formatted;
}
no, but on windows, you should be able to access most of them (depending on
the font) by using ALT+(number pad code)
eg ALT+(num pad)0169 gives you -> ©
Luke
--
Luke
"Louie Miranda" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Does all unicode characters
code-
for($i = 0; $i <= 31; $i++)
{
eregi_replace($search[$i], $replace[$i], $content);
}
return $content;
}
--
becomes
---new code-
$content = str_replace($search, $replace, $content);
return $content;
}
--
Luke
"Sc
;),
"unknown"))
$ip = getenv("REMOTE_ADDR");
else if (isset($_SERVER['REMOTE_ADDR']) && $_SERVER['REMOTE_ADDR']
&& strcasecmp($_SERVER['REMOTE_ADDR'], "unknown"))
$ip = $_SERVER['REMOTE_ADD
somewhere, that code should be
if (isset($_SESSION['xebitsession']))
same with everywhere else, unless $xebitsession is set, anwhere that there
is $_SESSION[$xebitsession] should become $_SESSION['xebitsession']
Maybe you could try it with a cookie instead and see if th
an easy way, but might not work in your case is to use sort()
if instead of storing the dates like 12-04-2003, could you prehaps store
them as
2003-04-03
year-month-day
and then you could use
$datearray = sort($datearray, SORT_STRING);
would this work for you?
--
Luke
"Matt Palermo&quo
uot;query results from {$_GET['search']}";
//then you could loop thru it
$i=1;
$subsearch == true;
while($subsearch == true){
if(isset($_GET['subsearch' . $i])){
$results = "subquery results";
}else{
$subsearch = false;
}
$i++;
}
NAME PASSWORD\n");
or something similar
like to know how it go's
--
Luke
"Angel Of Death" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>
> I'm fairly new to PHP and am trying to make a script that connects to a
> MUSH, logs in, sends some com
select all and
use
mysql_data_seek($result, rand(mysql_num_rows($result) - 1));
$row = mysql_fetch_assoc($result);
and there, your random row is returnd, that should be easy enough :) and it
should work
--
Luke
"Theheadsage" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL
what about output buffering and saving the output to a file instead of
flushing to the screen, that would work easy :)
Luke
--
Luke
"Paul Godard" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hi
>
> I have develop an online catalog in php/mysql. Now t
Try this:
if (copy($file_att,'servername\\folder\\'.$file_name))
and make sure you have write access on the winNT server
did that work?
Luke
om
"Omar" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Is there a way to copy a file from 1 server to a
it sounds like maybe you dont have the mysql php extension turned on in the
php ini file, or your php doesnt have mysql support?
Luke
"James Marcinek" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hello Everyone,
>
> I'm new to this so forgive my ig
index.php
page if they have to be redirected, or if they are already logged in, or if
they dont have permission
That might work
--
Luke
"Scott Taylor" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>
>
> Is there no other way to protect your (no
) sounds like you mat not have connected to a
valid FTP server? possibly or permissions?
--
Luke
"Jay Blanchard" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
[snip]
$mode = FTP_BINARY;
$picuploadname = $picupload[$i];
$piclocalname = "../pictures/".$piclo
to connect to the database several times,
allthought you will have to loop through a multidimensional array, but that
would work
--
Luke
"Alex Hogan" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hi All,
>
>
>
> I am converting a page from asp that is u
hi
Very simple problems, good to see ur getting the hang of it :)
the first is, you have defined your variables after you include the page, so
that the echo is outputting a blank variable...
so instead of:
make it
';
include ("../../../../includes/javascript.php");
include ("../../../../i
ftp_put($conn_ftp,$picuploadname ,$piclocalname , FTP_BINARY);
should be the same as
ftp_put($conn_ftp,$picuploadname ,$piclocalname , 2003);
so i duno :/
--
Luke
"Jay Blanchard" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
[snip]
That shouldnt matter, because FTP_BINA
Yeah, its fine, as long as your while loop ends
just after a quick glance, it looks like an infinite loop,
you might try
instead of
while (count($aListItems)){
try
while (isset($aListItems[$i])){
or
while ($i < count($aListItems)){
--
Luke
"Jon Bennett" <[EMAIL PROTECTED]&g
be better of doing your html code with echos, as
you have a few variables in there.. eg
';
if($includemiddle == TRUE){
echo '';
}
echo '';
?>
and if you are echoing a variable, quotes around it arent needed
you can just use
echo $variable;
instead of
echo "
I'm successfully using Outlook Express news client to view messages and post
messages, but i do get postmaster reply emails sometimes saying message
sending expired, even though they show up and obviously worked as i can get
replys
--
Luke
"Siamak" <[EMAIL PROTECTED]>
Are you using output buffering? that will stop it from being displayed (it
does on mine, if thre is an error and output buffering, nothing at all shows
up)
So try turning output buffering off, or at the beggining somewhere put
while(@ob_end_flush);
--
Luke
"Chris Edwards" <[EM
be suitable.
--
Luke
"Freedomware" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I now that have a system that works beautifully. I just wondered if it
> could be simplififed or improved even more.
>
> The head section on every page consists of an inclu
Well if you do want to read it, i logged in and uploaded the PDF versions of
the tutorial to my webserver, so take a look
PDF (A4) http://www.zeyus.com/phptutorial/wa-effphp-a4.pdf
PDF (Letter) http://www.zeyus.com/phptutorial/wa-effphp-ltr.pdf
Hope you find it useful!
Luke
"Chris W. P
try removing the dot and /
so
if (is_file("filedir/test.txt")) echo "Found it!";
else echo "Not found";
that should work on windows and unix platforms, i dont think windows likes
the single dot, but you can use relative referencing, by just using the
direct
Yeah, i think i mentioned the same thing(or was going to :/ )
you should be able to use the local filesystem, and reffer to it relatively!
and then you can stream it and you wont need any authentication, and noone
will be able to directly link to the file
--
Luke
"Jason Wong" <[EM
yeah its strange,
$test is equal to $test2,
$test is equal to $test3
but $test2 is not equal to $test3,
$test = "string";
$test2 = true;
$test3 = 0;
if($test == $test2){
echo "hi";
}
somone tell me im wrong please? else thats seriously weird
--
Luke
<[EMAIL PROTECTED]
because when the string and int are
compared, the string is zero (because it has no numerical value)?
did that make sense? am i right?
--
Luke
"Robert Cummings" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> On Tue, 2004-01-20 at 22:39, Luke wrote:
> > yeah its
im goin bananas, its time to go to band practise anyways,
--
Luke
"Robert Cummings" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> On Tue, 2004-01-20 at 23:00, Luke wrote:
> > ok, i read the section, but even so
> >
> > if $a == $b
> > and
ows/system32
C:\WINDOWS\system32>cd\
C:\>c:/windows/system32/ftp.exe
ftp> quit
C:\>cd /windows/system32
C:\WINDOWS\system32>cd ../system/
C:\WINDOWS\system>
so there shouldnt be a problem using relative referencing and forward
slashes? as far as i can see :/
--
Luke
("SELECT * FROM table WHERE name='me'", $sqlconnection1);
//this will select the table named table from the mydata2 database
mysql_query("SELECT * FROM table WHERE name='me'", $sqlconnection2);
hope thats what you were after
--
Luke
___
ased on
$_GET['id'], submit it to itself, and add &step=2
}elsif($_GET['step'] == 2 || $_GET['step'] == 'save'){
//save data back to database based on $_POST information from
form and $_GET['id']
}
}
and you should be abl
hi,
i get the following error when trying to run this code (see below):
Parse error: parse error, unexpected $ in /full path form.php on line 59
i have checked for unclosed braces - none - and tried uploading the files in
ascii format just in case but get the same same error.
i have searched ma
hi there,
the following code runs but no message is displayed from the if then else
statement at the end of the script. also, nothing is written to the database.
i have checked the insert statement and the login credentials are correct.does
anyone know what might be causing this?
thanks,
lukemac
-00-00 00:00:00.
Many thanks,
Luke Mackenzie.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
ls/114/3.php
many thanks,
luke.
---
need a new website? get over to
http://www.lukem-sites.co.uk
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
hi,
i'm trying to concatenate two php variables (containing form data) in a mysql
query. i'm currenty using the dot operator:
telphone number =$telcode.$telnumber'
but only the telcode gets written to the database.
any ideas?
many thanks,
luke m.
--
PHP General Mai
k of a way round this?
many thanks,
luke m.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
is empty (the user didnt select anything in the form),
> the implode function errors out.
>
> can anyone think of a way round this?
>
> many thanks,
>
> luke m.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
_1='$address1',address_2='$address2',
address_3='$address3', town='$town', county ='$county', postcode='$postcode',
country ='$country', telephone_number='$telcode.$telnumber',
fax_number='$faxcode.$faxnumber'
hi,
is there a way of setting a target property for header("Location:
thanks.htm")?
my form is in an iframe so when i hit submit, my php page redirects the user
to thanks.htm but this is rendered within the iframe not in a fresh page.
any ideas?
thanks,
luke.
--
PHP General Ma
bandwidth requirements
> at all.
>
>
> /Per Jessen, Zürich
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
--
Luke Slater
:O)
PGP Fingerprint: 643B B93E D979 15C9 5BBD 7AF
http://www.planet-php.net/ is an aggregator of some of the good stuff
>> that's out there.
>>
>
> It displays horribly in Firefox.
> They need to fix it.
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsu
Safari:
> http://www.rgraph.net (Updated March 14th)
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
--
Luke Slater
http://dinosaur-os.com/
:O)
Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
That or create a website that has already been created, but on a smaller
scale.
That way you will run into the common issues that you will have to deal with
in most of the projects you do.
--
Luke Slater
:O)
;solution = mysql_real_escape_string($s);
}
public function saveRecipe()
{
$query = "INSERT INTO recipe (title, problem, solution)
VALUES ('".$this->rtitle."',
'".$this->problem."',
'".$this->solution."')";
mysql_query($query);
}
}
Many thanks,
Luke Slater
2009/4/16 Jan G.B.
> 2009/4/16 Luke :
> > Hi guys,
> >
> > I've been learning about object oriented programming and I wrote this
> test
> > class but it doesn't seem to be working, it throws no errors but doesn't
> > insert anything to the data
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
I believe placing an @ in front of a statement suppresses any error messages
it generates.
--
Luke Slater
:O)
id in local part unless
// local part is quoted
if (!preg_match('/^"("|[^"])+"$/',
str_replace("","",$local)))
{
$isValid = false;
}
}
if ($isValid && !(checkdnsrr($domain,"MX") ||
checkdnsrr($domain,"A")))
{
// domain not found in DNS
$isValid = false;
}
}
return $isValid;
}
--
Luke Slater
http://dinosaur-os.com/
:O)
2009/4/28 Jan G.B.
> 2009/4/28 Luke :
> >
> >
> > 2009/4/28 Jan G.B.
> >>
> >> 2009/4/28 Jay Blanchard :
> >> > Our company wants to do e-mail verification and does not want to use
> the
> >> > requests / response method (click
and some have greatness thrust upon them."
>
> Twelfth Night, Act II, Scene V
>by William Shakespeare
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
But you're just using the same design semantic, but coding it in CSS instead
of using ; it even has the same name!
There appears to be nothing wrong with tables when used for the right
reasons - they _are_ there for a reason.
--
Luke Slater
http://dinosaur-os.com/
:O)
gt; Lenin
> > www.twitter.com/nine_L
> >
>
Moo, I would say learn to do PHP by itself before you go using frameworks.
AJAX is a bit different though because there will be few reasons that you
will ever need to write low level code when you're using a library like
Prototype =)
--
Luke Slater
:O)
into it and there seems to be something you can do with
get_called_class() but unfortunately I'm stuck with 5.2.9 at the moment and
that is new to 5.3.
Any ideas? Perhaps there is a different way I could implement the classes -
I would rather not have getObjectIds repeated three times!
Thanks in advance,
--
Luke Slater
:O)
into it and there seems to be something you can do with
get_called_class() but unfortunately I'm stuck with 5.2.9 at the moment and
that is new to 5.3.
Any ideas? Perhaps there is a different way I could implement the classes -
I would rather not have getObjectIds repeated three times!
Thanks in advance,
--
Luke Slater
http://dinosaur-os.com/
:O)
2009/5/29 Shawn McKenzie
> Luke wrote:
> > Right I've read the manual on this and all that so hopefully you find
> people
> > can help.
> > I have an abstract class with three children. The abstract is ForumObject
> > and the three children are Thread, Category
it: http://www.php.net/unsub.php
>
>
I was once working with a very problematic partner that kept changing data
in our database, so I rot13d all the data and told him it was some advanced
encryption and he never worked it out :)
--
Luke Slater
:O)
cket, SOL_SOCKET, SO_REUSEADDR, 1);
socket_set_nonblock($master_socket);
And I'm getting:
'PHP Warning: socket_bind(): unable to bind address [22]: Invalid argument
in /home/luke/talkserver/new/classes/server.php online 30'
$this->port is valid, I've checked both this
cket, SOL_SOCKET, SO_REUSEADDR, 1);
socket_set_nonblock($master_socket);
And I'm getting:
'PHP Warning: socket_bind(): unable to bind address [22]: Invalid argument
in /home/luke/talkserver/new/classes/server.php online 30'
$this->port is valid, I've checked both this
2009/6/29 Stuart
> 2009/6/29 Luke :
> > Hey guys, getting an odd error here... The code involved:
> >
> >$master_socket = socket_create_listen($this->port);
> >
> >socket_bind($master_socket, '127.0.0.1', $this->p
2009/6/29 Daniel Brown
> On Mon, Jun 29, 2009 at 02:42, Luke wrote:
> > Hey guys, getting an odd error here... The code involved:
> [snip!]
>
>Luke,
>
>Just a friendly reminder: for future reference, please don't start
> a second thread on the li
things like
adding:
private $firstobject = $GLOBALS['firstobject'];
But apparently that's bad syntax. I was just wondering the best way to get
around this?
Thanks a lot for your help,
--
Luke Slater
:O)
t;
> On Tue, Jun 30, 2009 at 8:43 AM, Peter Ford wrote:
> > Luke wrote:
> >> Hello again guys,
> >>
> >> I was wondering the best way to tackle the following problem:
> >>
> >> I've got a class, containing a property wh
compatible with 5_3 ?
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
Did anyone notice it has been released on the same day as firefox 3.5? See
any similarity in the version numbers?
--
Luke Slater
:O)
ww.php.net/unsub.php
>
>
Some people have a file called init.php, which would contain
session_start(); as well as other things that need to be done every page
load (connect to the database perhaps?) and they just 'require' that at the
top of every page.
--
Luke Slater
http://dinosaur-os.com/
:O)
;
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
Only officially:
http://en.wikipedia.org/wiki/FF<http://en.wikipedia.org/wiki/FF>
--
Luke Slater
:O)
I'm subscribed with.
--
Luke Slater
:O)
this text is protected by international copyright. it is illegal for
anybody apart from the recipient to keep a copy of this text.
dieser text wird von internationalem urheberrecht geschuetzt. allen
ausser dem/der empfaenger/-in ist untersagt, eine ko
. Instead,
> I received "use javascript". Okay... but that's not a php solution, right?
>
> Cheers,
>
> tedd
>
> --
> ---
> http://sperling.com http://ancientstones.com http://earthstones.com
>
> --
> PHP General Mailing List (http://www.php.net/)
&g
2009/8/17 tedd
> At 4:10 PM +0100 8/17/09, Luke wrote:
>
>> What would be really cool is if someone wrote a PHP script that generates
>> some Javascript code that could do this.
>>
>> I mean while we're on the subject of complicating things ;)
>>
>>
2009/8/17 Luke
>
>
> 2009/8/17 tedd
>
>> At 4:10 PM +0100 8/17/09, Luke wrote:
>>
>> What would be really cool is if someone wrote a PHP script that generates
>>> some Javascript code that could do this.
>>>
>>> I mean while we'r
t; > "$1/$2/$3", $date);
> > echo date("M j, Y", strtotime($date)) ."\n";
> > }
> >
> > ?>
> >
>
> Guess you didn't like this one? Also, if you change the / to - in the
> preg_replace() it should work on Euro style da
; > http://stut.net/
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
Then I assume you would have to copy the object into another variable rather
than reference the one you are trying to destroy?
--
t's a English based list.
> Or is it allowed to discriminate here?
>
> As a non-english speaker I feel very uncomfortable with this thread.
>
> With the best intentions for the community, sincerely yours,
>
> Martin Scotta
> Spanish Speaker
>
I don't think we w
just the USA :)
>
> --
> Peter Ford phone: 01580 89
> Developer fax: 01580 893399
> Justcroft International Ltd., Staplehurst, Kent
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visi
;
>
Nice one, I might be able to get to that one :)
Thanks,
--
Luke Slater
:O)
this text is protected by international copyright. it is illegal for
anybody apart from the recipient to keep a copy of this text.
dieser text wird von internationalem urheberrecht geschuetzt. allen
ausser dem/de
y.
>
> Just my 2cents :)
>
> --
> Jim Lucas
>
> "Some men are born to greatness, some achieve greatness,
> and some have greatness thrust upon them."
>
> Twelfth Night, Act II, Scene V
>by William Shakespeare
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
--
Luke Slater
I think the sentiment is that you can't fit all of the file in the
memory at once
Luke Slater
On 8 Aug 2008, at 07:59, Per Jessen <[EMAIL PROTECTED]> wrote:
Jim Lucas wrote:
What Apache starts, it reads the PHP memory limits in to the running
Apache process. When you try a
Maybe there is some configuration in the server somewhere causing it
to incorrectly use the tmp?
Luke Slater
On 8 Aug 2008, at 08:48, Torsten Rosenberger <[EMAIL PROTECTED]>
wrote:
Hello
on a linux system (Suese 10.2) with 1 GB memory its not possible to
upload
via http a 1 G
You could always program in something (perhaps in Ajax) to monitor the
progress of the file upload and check for errors periodically.
Luke Slater
On 8 Aug 2008, at 11:55, Peter Ford <[EMAIL PROTECTED]> wrote:
Per Jessen wrote:
Tom wrote:
Im very glad to fix this problem, but the ne
Is a 1.9 gb file upload even sustainable on even a fairly small scale
web application? Maybe you could implement FTP if you trust the people
that want to upload the file.
Luke Slater
Lead Developer
NuVoo
On 9 Aug 2008, at 14:52, "Tom" <[EMAIL PROTECTED]> wrote:
Practica
A friend works in a place where they use pascal as a database interface!
Luke Slater
Lead Developer
NuVoo
On 8 Aug 2008, at 16:25, V S Rawat <[EMAIL PROTECTED]> wrote:
On 8/8/2008 3:59 AM India Time, _Micah Gersten_ wrote:
You can't steal it, but you can't do anything wi
Except if paired with javadcript.
Luke Slater
Lead Developer
NuVoo
On 9 Aug 2008, at 15:09, Per Jessen <[EMAIL PROTECTED]> wrote:
Boyd, Todd M. wrote:
I had to use Java for the simple fact that PHP by itself cannot
access
the local file system in a way that allows for the partial l
gt; >
> > > Thanks
> > >
> >
> > Use the information_schema:
> >
> > SELECT COUNT(*) AS column_exists FROM information_schema.COLUMNS WHERE
> > TABLE_SCHEMA='db_name' AND TABLE_NAME='table_name' AND
> > COLUMN_NAME='
>
>
>
>
>
>
>
> It seems like I am just missing something somewhere.
>
> Anyone able to help?
>
> --
> -Dan Joseph
>
> www.canishosting.com - Plans start @ $1.99/month.
>
> "Build a man a fire, and he will be warm for the rest of the day.
> Light a man on fire, and will be warm for the rest of his life."
>
--
Luke Slater
Which gd package did you install? Php5-gd worked for me. Could be
something like it trying to install a php4 module onto php5
Luke Slater
Lead Developer
NuVoo
On 18 Aug 2008, at 15:47, Chantal Rosmuller <[EMAIL PROTECTED]> wrote:
I did, but it doens't help
On Thursday 14 August
y Job:
> Tribalogic Limited [http://www.tribalogic.net/]
> Open Source:
> Mandriva Linux Contributor [http://www.mandriva.com/]
> PulseAudio Hacker [http://www.pulseaudio.org/]
> Trac Hacker [http://trac.edgewall.org/]
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
--
Luke Slater
Commander)
> > can
> > find his way around.
> > * Easily copiable and deployable. As in can be used by more than one
> unit.
> >
> > --
> > I'm going out to find myself, if you see me here, keep me here untill I
> can
> > catch up
> >
> > If I haven't said so already,
> >
> > Thanks
> > Byron
> >
>
>
>
> --
> Feh.
>
--
Luke Slater
Hi everyone,
I was wondering if there is a way to create a dnl (or an array?) with all
the entries in an XML with a certain value in a certain tag in PHP DOM?
Thanks a lot.
Luke
than you do now.
>
> -Stut
>
> --
> http://stut.net/
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
--
Luke Slater
thr.ie/
>
> Day Job:
> Tribalogic Limited [http://www.tribalogic.net/]
> Open Source:
> Mandriva Linux Contributor [http://www.mandriva.com/]
> PulseAudio Hacker [http://www.pulseaudio.org/]
> Trac Hacker [http://trac.edgewall.org/]
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
--
Luke Slater
rectory (= users subdomains) would include this
> "cms-core" file with some individual settings. Is there better idea?
>
> I appreciate your discussion on this topic.
>
> Martin Zvarik
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
--
Luke Slater
POST requests in Ajax (or without in js) is straight forward. On the
iPod now but I'll POST an example later. Get it?
Luke Slater
Lead Developer
NuVoo
On 5 Sep 2008, at 18:14, mike <[EMAIL PROTECTED]> wrote:
On Fri, Sep 5, 2008 at 9:20 AM, Boyd, Todd M. <[EMAIL PROTECTED]>
tp://www.tribalogic.net/]
> Open Source:
> Mandriva Linux Contributor [http://www.mandriva.com/]
> PulseAudio Hacker [http://www.pulseaudio.org/]
> Trac Hacker [http://trac.edgewall.org/]
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
--
Luke Slater
ore.
>
> the reply was on his original attempt to header("POST: /foo") ... that was
> it.
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
--
Luke Slater
t; if it hasn't already.
>
>
>> If you wanted to combine conditions, you could do this:
>>
>> switch (1)
>> {
>> case $i==-2:
>> case $i==-1:
>> case $i==0:
>>
>>echo "i is less than 0 but greater than -3 and is a counting number
>> (i.e., no fraction)";
>>break;
>>
>> case $i==1:
>>echo "i equals 1";
>>break;
>>
>> case $i==2:
>>echo "i equals 2";
>>break;
>> }
>>
>>
>> Typed without checking and after my vacation.
>>
>> Cheers,
>>
>> tedd
>>
>>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
--
Luke Slater
1 - 100 of 239 matches
Mail list logo