a transaction. That will
hold up certain other queries. But that's at a whole other layer.
--
Jasper Bryant-Greene
General Manager
Album Limited
http://www.album.co.nz/ 0800 4 ALBUM
[EMAIL PROTECTED] 021 708 334
--
PHP General Mailing List (http://www.php.net/)
To unsubscr
John Nichel wrote:
Jasper Bryant-Greene wrote:
I never close connections; PHP does that for me and has never caused
any problems doing that. I don't see it as sloppy programming, it is a
documented feature that PHP closes resources such as database
connections at the end of the s
Robert Cummings wrote:
On Sat, 2006-04-01 at 21:39, Jasper Bryant-Greene wrote:
Robert Cummings wrote:
There's smart lazy programming, and sloppy lazy programming. I don't
trust anything magical in PHP. Most of us are familiar with the magic
quotes and global vars fiascos *LOL*. B
Robert Cummings wrote:
On Sat, 2006-04-01 at 20:48, Jasper Bryant-Greene wrote:
Yeah, e.g. I have a database objects layer that means I only write SQL
in classes, everything else is just calling object methods. I create the
database object at the start of every script but that doesn
any
problems doing that. I don't see it as sloppy programming, it is a
documented feature that PHP closes resources such as database
connections at the end of the script.
But, as has been said, each to their own.
--
Jasper Bryant-Greene
General Manager
Album Limited
http://www.album.co.nz
connect and disconnect from the
same database multiple times within the same request?
In my experience, connecting to the database takes up more than half of
the execution time of the average database-driven PHP script (I said
*average*, there are exceptions). You don't want to be doing it
e-insensitive flag, since there's no characters in your pattern).
The strpos() solution above is much better and faster in this case, though.
--
Jasper Bryant-Greene
General Manager
Album Limited
http://www.album.co.nz/ 0800 4 ALBUM
[EMAIL PROTECTED] 021 708 334
--
PHP Ge
Jim Lucas wrote:
Jasper Bryant-Greene wrote:
Jochem Maas wrote:
[snip]
you guess wrong :-) .. I couldn't resist testing it:
php -r '
class T { private $var = array();
function __set($k, $v) { $this->var[$k] = $v; }
function __get($k) { var_dump($k); }
}
$t = new T;
$t->a
y code (have you considered an
array? what is the point of all those variables if they all hold the
same value?), replace all of those '&&' with '=' and you will be fine.
PHP evaluates right-to-left and the result of an assignment is the value
that was assigned, so th
Chris wrote:
If they're accessing the same database you don't need to
disconnect/reconnect. Different db's - well, yeh you don't have a choice.
Of course you do. mysql_select_db() or whatever it's called. Or just
issue a USE [databasename] query. No need to reco
rcard's requirements. :)
--
Jasper Bryant-Greene
General Manager
Album Limited
http://www.album.co.nz/ 0800 4 ALBUM
[EMAIL PROTECTED] 021 708 334
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
as as the default
404 handler...
Default is something like this:
Not Found
The requested URL /asdf was not found on this server.
Apache Server at foo.org Port 80
On 3/30/06, Jasper Bryant-Greene <[EMAIL PROTECTED]> wrote:
In other words, if you w
--
Anthony Ettinger
Signature: http://chovy.dyndns.org/hcard.html
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--
Anthony Ettinger
Signature: http://chovy.dyndns.org/hcard.html
--
Jasper Bryant-Greene
General Manager
Album Limited
http
ersion="1.0" encoding="ISO-8859-1" ?>';
would work just as well and is a hell of a lot easier to look at. That's
assuming you actually want it to appear on the page for the user to see,
if you want the browser to interpret it you'll have to change the <
a
Jochem Maas wrote:
Jasper Bryant-Greene wrote:
Jochem Maas wrote:
I think its a misunderstanding on the one side and a limitation on
the other,
you can't use overloading directly on items of an overloaded array e.g:
echo $tc->arr['a']
this is triggers a call to __g
e 'a' key inside that array. Or at least it should, dammit.
--
Jasper Bryant-Greene
General Manager
Album Limited
http://www.album.co.nz/ 0800 4 ALBUM
[EMAIL PROTECTED] 021 708 334
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
27;])) {
unset($tc->arr['b']);
}
you just removed b from the array under 'arr' in the $vars member array.
//var_dump is only to see results of above
var_dump($tc);
this should show something equiv. to:
array(
'arr' => array(
this->Location->GetMap())->GetUrl() .. which
doens't work.
In short, no. That syntax was introduced in PHP5. For OO work, I would
strongly recommend upgrading to PHP5 as there are many other important
OO features that simply are not available in PHP4.
--
Jasper Bryant-Greene
General
. "\n";
?>
--
Jasper Bryant-Greene
General Manager
Album Limited
http://www.album.co.nz/ 0800 4 ALBUM
[EMAIL PROTECTED] 021 708 334
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
SLaVKa wrote:
Hey guys just a general question... if you have a
parent::__constructor() call in your constructor function, should that
call ideally be placed before or after the code inside the current
constructor? or it doesnt really matter
That depends on which code you want to run first. S
From http://php.net/addslashes :
"Having the PHP directive magic_quotes_sybase set to on will mean ' is
instead escaped with another '."
Jasper
Chris Boget wrote:
Can someone explain something to me:
$string = "Bob's carwash's door";
echo 'addslashes(): ' . addslashes( $string ) . '
Anthony Ettinger wrote:
private $foo; cannot be accessed directly outside the script.
print $f->foo; #fails
Fatal error: Cannot access private property Foo::$foo in
/x/home/username/docs/misc/php/client.php on line 11
Did you define the __get and __set functions in your class as in the
prev
There is no way using the core language. You can, however, use the
runkit function if you absolutely have to:
http://php.net/runkit_constant_remove
Jasper
Suhas wrote:
Hi,
How do I unset a defined variable.
e.g.
define('AA',1);
unset(AA) // gives error
any suggestions!
Thanks
SP
--
P
Kevin Murphy wrote:
Does anyone have a clue why using this code doesn't work:
Please specify what "doesn't work" means in this case :)
$i = 0;
while ($row = mysql_fetch_array($result))
{
echo ("Blah blah blah");
$i++;
}
$r = 0;
while ($row = mysql_fetch_arra
PHP Mailer wrote:
Mark skrev:
[snip]
$query = "INSERT INTO users AVATARS WHERE id =$user_id '','$avname')";
mysql_query($query);s
[snip]
I am trying to insert the value of $avname into the users table, into
the avatar field.
I think what you are trying to do is coordinated a bit wrong, perh
If you're on *nix:
man iconv
otherwise, I have no idea, sorry.
Jasper
Andy wrote:
No it was not. If I save it with UFT8 encoding it works well.
So, do I have to convert all the files to UTF8 encoding?
Is there an easy way to do that?
- Original Message - From: "Jasper Bry
Is the file saved in UTF-8 encoding (the PHP script itself)?
Jasper
Andy wrote:
This is my code:
";
echo utf8_encode ($str);
?>
öüééééÉõõÕÕ
I tried all the ways:
and
etc.
The first echo... is not showed correctly.
The second (with the encoding function) work
Merlin wrote:
I am wondering if I am opening a potential security risk by
including files on remote servers. I am doing an include
('http:/www.server.com/file.html') inside a php script of mine
to seperate content from function. Content is produced by a friend of
mine and
I do not want to gran
nano tmpfile.txt" );
all just hang (top shows nano is running, but it doesn't seem to be
attached to the terminal).
How can I launch a process and attach it to the terminal PHP CLI was
launched from so that the user can interact with it?
TIA
--
Jasper Bryant-Greene
General Mana
.
GET represents nothing of importance changing on the server, e.g.
performing a search on the database, and can safely be repeated.
SSL/TLS is the best option if you wish to transmit sensitive data.
--
Jasper Bryant-Greene
General Manager
Album Limited
+64 21 708 334
[EMAIL PROTECTED]
--
PHP
. I can't speak for your machine,
though.
cd /; find -name head.jpg
--
Jasper Bryant-Greene
General Manager
Album Limited
+64 21 708 334
[EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Joe Harman wrote:
Hi Chris,
I would think that there has to be something out there like a Javascript
that would accomplish that... that would be my first guess anyhow... there
possibly could be something done in flash that would act as a drop area for
the file... let us know what you find
Joe
Jasper Bryant-Greene wrote:
Ben wrote:
$dbVars=explode(',',$two_vars); // Assuming comma seperator
foreach($dbVars AS $key => $value) {
$eval="\$temp=".$value.";";
eval($eval);
echo $temp;
}
WTF do you need eval() for?!
$dbVars = explode(
Ben wrote:
If I understand your question properly I'd explode $two_vars with
whatever seperator you have between them and then you'll need to use
eval to get your results. Maybe something like...
$dbVars=explode(',',$two_vars); // Assuming comma seperator
foreach($dbVars AS $key => $value) {
Chuck Anderson wrote:
Ben wrote:
Edward Martin said the following on 11/17/2005 04:27 PM:
"Warning: Cannot modify header information - headers already sent by
(output started at
/usr/home/ecmartin/public_html/ethics06/calendarlogin.php:8) in
/usr/home/ecmartin/public_html/ethics06/sas.php on
John Taylor-Johnston wrote:
My question is simnple. I want to randomly select a row in a mysql
table. I have a primary id.
$news = mysql_query($sql) or die(print "color=red>".mysql_error()."");
while ($mydata = mysql_fetch_object($news))
{
??
}
?>
If your table isn't too big, it's
Brad Glonka wrote:
The script does not give me any output.
I think this is what I need to enable.
No, as has already been said on the list. That "virtual directory"
setting has nothing to do with this AFAIK.
Are you running PHP as an Apache module or as CGI?
Jasper
--
PHP General Mailing L
Jay Blanchard wrote:
[snip]
I think I may be headed down the wring direction.
I'm using Apache.
What I'd like to be able to do is to
pass arguments to a script as though it were a directory.
Something like so
http://server.com/script.php/some-virtual/dirs/
[/snip]
http://us2.php.net/dir
http:/
Bruce Gilbert wrote:
Sorry for the newbie question...
I did a search on php.net but didn't find my answer.
what does \r\n do as opposed to just \n?
and yes, I know what \n does.
Different platforms have different line-break conventions. \n is a line
feed, while \r is a carriage return (the
Miles Thompson wrote:
Can someone get rid of him?
Every time I post, which I admit is not often, I get a bounce.
Yeah, same. I think there was some discussion recently regarding it but
I don't know what happened.
I even tried to go to www.xasamail.com and register an account ale0952
just to
s it was and put the backticks
in the SQL statement, like this:
$sql = "INSERT INTO `$table_name` values ('', '$_POST[f_name]', [...]
Jasper
On 11/13/05, Jasper Bryant-Greene <[EMAIL PROTECTED]> wrote:
Bruce Gilbert wrote:
You would need to show us the SQL
Bruce Gilbert wrote:
You would need to show us the SQL that was causing that error. Otherwise
it is fairly meaningless.
hope this helps...
Unrelated, but you should have quotes here. Like $_POST['f_name']
header("Location:http://www.inspired-evolution.com/show_addcontact.php";);
Bruce Gilbert wrote:
I am trying to set up a contact list database using guidance from a
PHP/MySQL book I recenty purchased, and not aving done this before I
am not sure what the following error means or where I shoudl look for
this kind of error. I have a table set up in MySQL using PHPMyadmin,
Todd Cary wrote:
Marcus -
Many thanks! I did not know that MIME-Type. Change duly made!
You're not suggesting that you actually set the MIME-Type to
application/force-download, are you?
Todd
Marcus Bointon wrote:
On 13 Nov 2005, at 00:17, Jasper Bryant-Greene wrote:
seem
Todd Cary wrote:
Yup! It was the missing parentheses! Works as planned.
Many thanks
The "application/text" gives the user the ability; "text/plain" does not
The ability to...?
seem to do that. I just tried "application/text" since I use
"application/pdf" for other applications.
Wh
Todd Cary wrote:
My client's new shared server does not allow printing to a file, so I
want my print statement to print to a buffer, then I'll send it to the
user via Headers. This does not work since "print" does no go to the
buffer, or at least appears not to: I get the errors from the heade
Bruce Gilbert wrote:
I don't suppose you meant like this : $headers = "From:
$sender";("\r\n").
or is it without the ( )?
I think you should read up on some basic PHP syntax (the manual is your
friend. He meant like this:
$headers = "From: $sender\r\n";
$headers .= "Reply-To: $reply
GamblerZG wrote:
What is the purpose of sessions extension?
The reason I ask is because learning to deal with all its functions, ini
options and quirks took me _much_ more time than writing pure-php
replacement. (That is, without using session_set_save_handler().)
I realise that yours might b
s the spec goes).
I always try to enter my email address like this when asked for it on a
form:
Jasper Bryant-Greene <[EMAIL PROTECTED]>
That is a perfectly valid (according to RFC822) email address. Those
that do bother to validate usually spit it out as invalid.
Just to demo
Jay Blanchard wrote:
[snip]
Well, it's a pretty model example of a line-by-line file read. I can't
see anything wrong with it, so perhaps the problem lies elsewhere.
There's no other files with the same name in your include_path?
Maybe something to do with auto_detect_line_endings or whatever
Jay Blanchard wrote:
$theFile = fopen("docs/InstallationInstructionMaster.txt", "r") || die;
I'm not sure if it would make any difference, but I usually use "or" in
this case rather than "||", and I know they have different operator
precedence.
while(!feof($theFile)){
$theLine = fg
[EMAIL PROTECTED] wrote:
Is there a way when making a MySQL database entry through a PHP script and
there is no data to make the db treat it as NULL?
Wouldn't this just work:
INSERT INTO myTable (myField) VALUES (NULL)
Jasper
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe,
GamblerZG wrote:
Richard Lynch wrote:
Please pay attention.
Sorry, I did not see your message when I posted that.
Oh and would you mind using an email address that exists? Every time I
reply to one of your posts, I get a returned mail from highstream.net
saying your user doesn't exist..
Larry E. Ullman wrote:
Also, in my opinion, having a good knowledge of how to create a dynamic
Web site helps when going from PHP to ASP.NET. If you know what the
program must do in terms of functionality, protocol, etc., then it's
mostly a matter of picking up the right syntax. I found tha
Ross wrote:
because the following line give the notice 'undefined index' BEFORE the
submit button has been pressed..
That's because before the submit button has been pressed, $_POST is
empty and so 'heading' is indeed an undefined index. Try:
$heading_insert = isset( $_POST['heading'] )
sure AllowOverride is set
correctly in your main Apache config file; try setting it to All for
debugging this.
--
Jasper Bryant-Greene
General Manager
Album Limited
e: [EMAIL PROTECTED]
w: http://www.album.co.nz/
b: http://jbg.name/
p: 0800 4 ALBUM (0800 425 286) or +64 21 232 3303
a: PO Box 579
>
> > If you guys wouldn't mind taking a few more minutes to mow over all of
> > this, I would *greatly* appreciate it.
Would you mind telling us what the problem is? You've said that you are
having problems and that you don't think you're alone, but you hav
a file pointer exists. You want to check if
the file exists. Try:
if( file_exists( "http://www.stammis.com/getstart.php"; ) )
--
Jasper Bryant-Greene
General Manager
Album Limited
e: [EMAIL PROTECTED]
w: http://www.album.co.nz/
b: http://jbg.name/
p: 0800 4 ALBUM (0800 425 2
, I've also tried using "\n\n" instead of "\r\n\r\n".
>
> Can anyone give me some advive on how to get the linebreak characters
> interpreted as linebreaks?
Use double quotes around the parts that have \r and \n characters if you
want them to be interpreted.
--
om the browser. When I run the script from the command line, the
> >connection succeeds. Any idea if this is a PHP error or an apache error.
> If
> >this is an apache error, does anyone know what I need to search for to find
> >an answer?
> >
> >
> >
> >Thanks,
&g
> global $DB;
Again, no need to global $DB. You are still in the global scope.
> $RL="__";
> $LoginD="__";
> $ID=$UserInfo['ID'];
> echo $ID;
> $DB="membersp";
Here is your problem. You just replaced the $DB object with a string.
Maybe you
STDIN );
> >
> > returns an error.
>
> The internal STDIN pointer? there is no such thing by the name of STDIN in
> php.
Yes there is, when running in CLI mode. See:
http://php.net/features.commandline#AEN7906
--
Jasper Bryant-Greene
General Manager
Album Limited
e: [EMAIL
On Wed, 2005-11-02 at 19:05 -0500, Unknown Unknown wrote:
> Oh thanks again
> and what does RTFM mean?
Read The [insert your favourite word beginning with F here] Manual.
--
Jasper Bryant-Greene
General Manager
Album Limited
e: [EMAIL PROTECTED]
w: http://www.album.co.nz/
b: http://jbg.n
are $DB as a global at the start of the function. Like this:
function doSomething() {
global $DB;
$DB->doSomethingElse();
}
Or access $DB through the globals superglobal. RTFM.
--
Jasper Bryant-Greene
General Manager
Album Limited
e: [EMAIL PROTECTED]
w: http://www.album.co.nz
way to do what you need to do.
I can assure you one does exist, but with your example it's fairly
obvious, so you'd need to explain better what you're trying to do before
I could help you.
--
Jasper Bryant-Greene
General Manager
Album Limited
e: [EMAIL PROTECTED]
w: http://www.albu
On Sun, 2005-10-30 at 21:16 -0500, John Taylor-Johnston wrote:
> I need to generate embedded php within in a mysql record. $contents is
> the actual contents of that record.
>
> $contents = " arial,helvetica; font-weight: bold;\">About the Project
> ";
> echo eval($contents);
> ?>
>
> I get thi
D =1 << 3;
> }
>
> Well now, is this a bug, and I should file it, or is it, and why, normal?
Not a bug. Read manual.
>From http://php.net/oop5.constants comes the following:
"The value must be a constant expression, not (for example) a variable,
a class member, result of a
scratch.
> white space is nice but too many blank lines lead to overscroll ;-)
Another matter of personal taste. I love whitespace and my scroll wheel
has its acceleration turned up very high, so scrolling doesn't really
bother me :)
--
Jasper Bryant-Greene
General Manager
Album Limit
h chk_mac() (which by the way should return true or false, not 1 or
0, but meh).
--
Jasper Bryant-Greene
General Manager
Album Limited
e: [EMAIL PROTECTED]
w: http://www.album.co.nz/
p: 0800 4 ALBUM (0800 425 286) or +64 21 232 3303
a: PO Box 579, Christchurch 8015, New Zealand
--
PHP Gen
sn't working" is a bit vague.
* Does it throw an error?
- If so, can we have the error message?
* Does it mark invalid strings as valid?
- Or vice versa?
Just posting a pile of code with an explanation of what it does and
leaving the rest of us to figure out what the problem is
oblem was?
--
Jasper Bryant-Greene
General Manager
Album Limited
e: [EMAIL PROTECTED]
w: http://www.album.co.nz/
p: 0800 4 ALBUM (0800 425 286) or +64 21 232 3303
a: PO Box 579, Christchurch 8015, New Zealand
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://ww
near congruential
generator, collisions should be *very* improbable, even when generating
IDs on multiple hosts all at the same time.
--
Jasper Bryant-Greene
General Manager
Album Limited
e: [EMAIL PROTECTED]
w: http://www.album.co.nz/
p: 0800 4 ALBUM (0800 425 286) or +64 21 232 3303
a: PO Box
hich should be very unique and suitable for most purposes.
--
Jasper Bryant-Greene
General Manager
Album Limited
e: [EMAIL PROTECTED]
w: http://www.album.co.nz/
p: 0800 4 ALBUM (0800 425 286) or +64 21 232 3303
a: PO Box 579, Christchurch 8015, New Zealand
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
a search for "data: URI RFC" or similar to find out about them.
--
Jasper Bryant-Greene
General Manager
Album Limited
e: [EMAIL PROTECTED]
w: http://www.album.co.nz/
p: 0800 4 ALBUM (0800 425 286) or +64 21 232 3303
a: PO Box 579, Christchurch 8015, New Zealand
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
one declaration for it. Make
sure it isn't commented out (sounds silly, but you never know)...
Oh, and check the permissions on /etc/php.ini, just in case.
--
Jasper Bryant-Greene
General Manager
Album Limited
e: [EMAIL PROTECTED]
w: http://www.album.co.nz/
p: 0800 4 ALBUM (0800 425 28
rowser, not PHP. PHP is actually outputting absolutely nothing in the
response-body.
--
Jasper Bryant-Greene
General Manager
Album Limited
e: [EMAIL PROTECTED]
w: http://www.album.co.nz/
p: 0800 4 ALBUM (0800 425 286) or +64 21 232 3303
a: PO Box 579, Christchurch 8015, New Zealand
--
PHP Gen
php.ini. If it
isn't, then you're editing the wrong php.ini.
Also, make sure you're not overriding those values in a .htaccess file
or in a script.
What kind of errors are happening that aren't being displayed? For
example in an output buffering handler, an error could just c
splayed
if you create a file containing and view it with
your web browser
--
Jasper Bryant-Greene
General Manager
Album Limited
e: [EMAIL PROTECTED]
w: http://www.album.co.nz/
p: 0800 4 ALBUM (0800 425 286) or +64 21 232 3303
a: PO Box 579, Christchurch 8015, New Zealand
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
'publications' => 'Publications'
);
print( '' );
foreach( $selectValues as $value => $option ) {
print( '' . htmlspecialchars( $option ) . '' );
}
print( '' );
?>
If you're using XHTML, replace ' sele
thing as
an HTTP_Response on its own. It has to be a specific type of HTTP
Response, that is a 301 Moved Permanently or a 304 Not Modified.
Does that help?
--
Jasper Bryant-Greene
General Manager
Album Limited
e: [EMAIL PROTECTED]
w: http://www.album.co.nz/
p: 0800 4 ALBUM (0800 425 286) or +
ue7')
... and so on.
These are apparently much nicer for MySQL to process, which may result
in lower memory usage and faster operation.
--
Jasper Bryant-Greene
General Manager
Album Limited
e: [EMAIL PROTECTED]
w: http://www.album.co.nz/
p: 0800 4 ALBUM (0800 425 286) or +64 21
issue in any suggested answer, keep that in mind.
To be honest, I think you're going about it the wrong way. Put the
secret word into $_SESSION. Point the tag at a PHP script which
pulls it out of $_SESSION and renders it as an image. Then you don't
need to send it to the client in any fo
> becomes:
>
> a/b/c/d/foo.php
>
> but the OP wanted:
>
> foo.php
It will actually work... Did you not notice that he was using
strrpos() ? Note the extra 'r' in there :) http://php.net/strrpos
--
Jasper Bryant-Greene
General Manager
Album Limited
e: [EMAIL
're using IIS, but is there a similar thing available
through IIS's configuration? (I wouldn't know, I don't practise the dark
arts...)
--
Jasper Bryant-Greene
General Manager
Album Limited
e: [EMAIL PROTECTED]
w: http://www.album.co.nz/
p: 0800 4 ALBUM (0800 425 286) or +64 21
ne that you've been editing, and then move the one you've been
editing around the following folder until you find the one in which it
works:
c:\php
c:\windows
c:\windows\system32
c:\
Horrible, isn't it?
--
Jasper Bryant-Greene
General Manager
Album Limited
e: [EMAIL PROTECTED]
w
d to use that
degenerate platform, is that sometimes PHP is using a different php.ini
from the one you thought it was using, f.x. if there has been an earler
PHP install and someone's put php.ini in c:\windows\system32 or
something.
--
Jasper Bryant-Greene
General Manager
Album Limited
e: [EMAIL
it
was me I'd probably treat it as a string. If you really *have* to treat
it as a number, then use float and get all the precision errors that
come with floating-point, or use binary coded decimal or another
arbitrary precision system.
--
Jasper Bryant-Greene
General Manager
Album Limited
e:
ths
http://php.net/parse_url for URLs
--
Jasper Bryant-Greene
General Manager
Album Limited
e: [EMAIL PROTECTED]
w: http://www.album.co.nz/
p: 0800 4 ALBUM (0800 425 286) or +64 21 232 3303
a: PO Box 579, Christchurch 8015, New Zealand
--
PHP General Mailing List (http://www.php.net/)
To unsubscri
script regularly (how regular would depend on the specific
app) to execute all the processes in the list.
--
Jasper Bryant-Greene
General Manager
Album Limited
e: [EMAIL PROTECTED]
w: http://www.album.co.nz/
p: 0800 4 ALBUM (0800 425 286) or +64 21 232 3303
a: PO Box 579, Christchurch 8015, New
//php.net/parse_str
--
Jasper Bryant-Greene
General Manager
Album Limited
e: [EMAIL PROTECTED]
w: http://www.album.co.nz/
p: 0800 4 ALBUM (0800 425 286) or +64 21 232 3303
a: PO Box 579, Christchurch 8015, New Zealand
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://ww
gt;
> I know, but I don't want to post my tracking code. I am certain,
> however, that it is not returning anything to the browser. The is at the top of the page, no echo, ...
So just blank out the tracking code. I'm not sure how you expect us to
help you if we can't see t
php.net/pecl/win32service/
--
Jasper Bryant-Greene
General Manager
Album Limited
e: [EMAIL PROTECTED]
w: http://www.album.co.nz/
p: 0800 4 ALBUM (0800 425 286) or +64 21 232 3303
a: PO Box 579, Christchurch 8015, New Zealand
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Richard Lynch wrote:
On Sat, October 15, 2005 7:26 am, Edward Vermillion wrote:
> Do they want the PDF to display in the page, or is a link to a PDF
> ok for them?
I've already warned them that a PDF embedded into a page is
impossible.
That may not be true, technically, for all I know, b
aracters like è don't have any special meaning
in XML, and they can be represented in the UTF-8 character set, so
there's no need to convert them to entities at any stage.
--
Jasper Bryant-Greene
General Manager
Album Limited
a: Freepost Album, PO Box 579, Christchurch 8015, New Zeal
jonathan wrote:
the real characters (presumably è) won't render correctly.
Are you outputting the correct character set information (UTF-8), and
are you sure that UTF-8 is being used throughout the entire process?
--
Jasper Bryant-Greene
General Manager
Album Limited
a: Freepost Albu
he
same thing happens.
If you've got a row ID number or something, just call the form "lit[id]"
(replacing [id] with the ID number), because I don't think a form name
can start with a number. Otherwise you could sha1() the title and use
that as the identifier, or simply remove all sp
);
?>
Is there some way to escape the characters in the directories? For
example if i put a "\" in front of blank spaces it takes care of
those (same for "'","(" etc.) but that obviously doesn't take care of
everything. I'm hoping there is somet
very helpful for you.
Please don't just copy-paste the above table definitions, they're meant
to be modified to suit your needs.
I'll leave your other question to be answered by someone with experience
of streaming audio from PHP, as I've never had occasion to do that.
--
Jasp
as
taking that argument by reference (&$foo) unless you want to pass a copy
of the object.
It would have taken you less time to write a test script and see for
yourself than to search the docs and then post to the list...
--
Jasper Bryant-Greene
Freelance web developer
http://jasper.brya
ccess file in the root of your application.
AddType application/x-httpd-php .html
--
Jasper Bryant-Greene
Freelance web developer
http://jasper.bryant-greene.name/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
1 - 100 of 362 matches
Mail list logo