Hi list!!!
I want to make a script to do a backup of a MySQL DB and email me it. It is
posible?
Can anybody explain me how to do the backup?
Thanks! Julian
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hey All,
I get the following error:
Warning: php_network_getaddresses: getaddrinfo failed: No address
associated with hostname in
/usr/home/roshi/htdocs/includes/rightcont_nanciesorg.inc.php on line 57
Warning: fopen("http://www.nancies.org/news/rss/","r";) - Bad file
descriptor in /usr/home/rosh
> Try just pinging www.nancies.org from the command line.
$ ping nancies.org
PING nancies.org (207.8.144.57): 56 data bytes
64 bytes from 207.8.144.57: icmp_seq=0 ttl=64 time=0.047 ms
64 bytes from 207.8.144.57: icmp_seq=1 ttl=64 time=0.043 ms
64 bytes from 207.8.144.57: icmp_seq=2 ttl=64 time=0.0
> > $ ping nancies.org
> > PING nancies.org (207.8.144.57): 56 data bytes
> > 64 bytes from 207.8.144.57: icmp_seq=0 ttl=64 time=0.047 ms
> > 64 bytes from 207.8.144.57: icmp_seq=1 ttl=64 time=0.043 ms
> > 64 bytes from 207.8.144.57: icmp_seq=2 ttl=64 time=0.036 ms
> > 64 bytes from 207.8.144.57:
> I need to schedule to run a PHP script on server side, rather than invoke it
> from browser. Is there any way to compile it to .exe so it can run on
> Solaris/Apache environment?
no such thing as .exe in Solaris ;) just "chmod 755" a file and it will
execute.
> If yes, can you help me know how
> He did say he did /not/ want to invoke it from a browser :)
I didn't think that PHP could run w/o one though, so my idea was to use a
text browser, have it run the script, then exit out. As I said, I was
probably wrong ;)
Sabre
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe
Hello!
I want to know how I can create email POP accounts from a script PHP.
If somebody can help me, thank ahead of time!
Regards! Julian
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hey Dan!!!
This book is for sale I can't buy it!
Can any body explain me how I can to create email POP accounts whith PHP
without using vpopmail
Thanks! Julian
- Original Message -
From: Dan Harrelson
To: Julian ; [EMAIL PROTECTED]
Sent: Friday, March 22, 2002 9:
Hi Jason!!!
Explain me how to do it with qmail and sendmail, plese.
Thank you! Julian
- Original Message -
From: Jason Wong
To: [EMAIL PROTECTED]
Sent: Saturday, March 23, 2002 4:00 PM
Subject: Re: [PHP] Create Email POP accounts with PHP
On Saturday 23 March 2002 21:40, Julian wrote
Hello to all !!!
I write you because I have the following question:
I am attempting execute automatically an script PHP, all the days at a
certain hour.
I configured the cron to executes it, but when it is executed, instead of
working, I receive an email in
my main account where say:
/home/vip
#x27;t put content of this
type
Do you know what is the problem now??
Regards and thank for your time!! Julian
- Original Message -
From: Miguel Cruz
To: Julian
Cc: [EMAIL PROTECTED]
Sent: Friday, April 05, 2002 7:26 PM
Subject: Re: [PHP] CRONTAB
On Fri, 5 Apr 2002, Julian wrote:
> I
YES!! MY SCRIPT RUN AND I'M NOT RECEIVING ANY EMAIL!
Thanks to all!!
Specials thanks to Miguel and Dan!!
Regards! Julian
- Original Message -
From: Analysis & Solutions
To: PHP List
Sent: Friday, April 05, 2002 9:44 PM
Subject: Re: [PHP] CRONTAB
On Fr
Hi!!!
I want to know if there is a function to know which is the number of the row
that I selected.
Please, help me! Julian
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Thanks James!
It is the perfect answer for my cuestion!!!
Regards! Julian
- Original Message -
From: James E. Hicks III
To: Julian ; [EMAIL PROTECTED]
Sent: Monday, April 08, 2002 5:12 PM
Subject: RE: [PHP] mysql question
Why don't you just increment a counter as yo
Hello,
Has anyone successfully implemented gettext on windows?
If so how do you go about creating po files and using the bindtextdomain function;
Thanks
Hello,
I need to use FTP to upload a local file to a server. The uploads must be
done through FTP and not HTTP. Unfortunately, the example in the manual is
not working for me. If someone has any suggestions I would really appreciate
it.
Thanks,
Julian
--
PHP General Mailing List (http
was a problem uploading the file."
Any suggestions would be greatly appreciated.
Thanks,
Julian
"Marek Kilimajer" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Julian wrote:
>> Hello,
>>
>> I need to use FTP to upload a local file to a s
i am trying to get a file from my local c drive to my server using something
other than a form.
thanks,
julian
"Jason Wong" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> On Sunday 26 September 2004 06:38, Julian wrote:
>> Maybe I should be more specific
do truly appreciate the time you and others took to look into this.
julian
"Marek Kilimajer" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Julian wrote:
>> i am trying to get a file from my local c drive to my server using
>> something other than a
Awesome work and the new design for the php.net website is also nice ;)
Am 20.06.2013, 23:22 Uhr, schrieb Julien Pauli :
Hello!
The PHP Development Team would like to announce the immediate release of
PHP 5.5.0. This release includes a large number of new features and bug
fixes.
A separate re
I want to open a database connection at program initialization and use
that very same connection via globals initilizating ( loading from db)
other objects.
Basically
index.php
$db=new mysqli(host,us,pass,db);
if(mysqli_connect_errno()){
die('errordb conex');
}
switch ($var){
julian wrote:
I want to open a database connection at program initialization and use
that very same connection via globals initilizating ( loading from db)
other objects.
Basically
index.php
$db=new mysqli(host,us,pass,db);
if(mysqli_connect_errno()){
die('errordb conex');
however this will work...
p1.inc
1 var;;
9}
10 }
11
12 class obj {
13var $obj2=20;
14
15function f1(){
16 global $db;
17
18 echo "\n".$db->fun2()*$this->obj2."\n";
19}
20 }
21 ?>
1 #!/usr/bin/php -q
2
3 f1();
13
14 ?>
--
PHP General Mailing L
julian wrote:
however this will work...
p1.inc
1 var;;
9}
10 }
11
12 class obj {
13var $obj2=20;
14
15function f1(){
16 global $db;
17
18 echo "\n".$db->fun2()*$this->obj2."\n";
19}
20 }
21 ?>
1 #!/usr/bin/php -q
2
Hi,
I am implementing this
class dbaccess{
static $db=null;
static $othervar=33;
private function dbaccess(){
dbaccess::$db= new mysqli("localhost",USER,PASSWD,DB);
if(mysqli_connect_errno()){
echo "no way";
}
}
public static function GetDb(){
if(
but that forces me to implement a large interface of functions that I
prefer to avoid...
the $dummy thing works... but I guess it is not "by the book".
I would like to understand what am I missing fom the concept
Thanks.
JCG
Daniel Brown wrote:
On Jan 16, 2008 12:57
nope... only works if I change
$dummy= new dbaccess();
and keep the rest .
Thanks.
... hope it does not repeat... got undelivered...
Eric Butera wrote:
On Jan 16, 2008 12:57 PM, julian <[EMAIL PROTECTED]> wrote:
Hi,
I am implementing this
class dbaccess{
static $d
you are forcing the no instantiation via abstract, instead of hiding via
private method constructor.
You change the constructor for an init function.
still the $dummy = new dbaccess (). looks like a simpler solution
Thanks for your comments
Jochem Maas wrote:
julian schreef
of the solutions.
Have an emtpy private constructor, and have the an init fucntion do the
work so typing does not get mixed up.
Thanks.
Colin Guthrie wrote:
Julian wrote:
but that forces me to implement a large interface of functions that I
prefer to avoid...
the $dummy thing works
Hi,
I am using phpmailer currently to send email from my applications. My
ISP is restricting the usage of email without SSL/TLS and my SMTP
connections have started to fail...
Any hints on the best approach to send email from php appplciations ?, I
wish I could use my standard gmail/yahoo
Hi,
I have an application that along filling in some forms, it produces a
pdf file, as confirmation of all entered data.
I want to send this pdf file to a different window/tab of the browser,
so it is displayed and can latter be printed.
In the mean time, the original window contains a c
not html target, pdf window so it can be saved and printed
separately form the application.
Børge Holen wrote:
On Monday 18 February 2008 13:59:11 julian wrote:
Hi,
I have an application that along filling in some forms, it produces a
pdf file, as confirmation of all entered data.
I
Hello,
I would like to delete a set of images right after they are displayed on the
page using unlink. Unfortunately, with unlink the images are deleted before
they display on the user's browser. Is there a way to do this?
Thank you!
--
PHP General Mailing List (http://www.php.net/)
To unsubs
Hi all,
I have been creating some dynamic images, with text. Some fonts seem to work
fine, but some give the right number of characters, but each character is
just a square box.
What's causing this. I know the fonts are there (there is an entirely
different error message when the fonts are not th
Hi all,
I have something thats been driving me mad for days
I have:
if ($where1 != '')
{
$whereArray = array_push($whereArray, $where1);
}
and I want to repeat for $where1 up to $where8
but rather than write it out 8 times, I'd rather use a loop
for ($i=1; $i<=8 i++)
{
if
> Brandon Orther
> WebIntellects Design/Development Manager
> [EMAIL PROTECTED]
> 800-994-6364
> www.webintellects.com
> ----
>
--
Julian Wood
Multimedia Developer
University of Calgary
--
PHP General Mailing Lis
performance,
unless you're missing indexes on the pertinent joins.
Julian
--
Julian Wood
Multimedia Developer
University of Calgary
on 3/1/01 6:52 AM, Chris Lee at [EMAIL PROTECTED] wrote:
> on a 45mb table with 31,470 rows mysql takes this long.
>
> mysql> SELECT stockno fr
select count(*), year from students group by year;
on 3/1/01 12:07 PM, Kath at [EMAIL PROTECTED] wrote:
> I have a user database where a year has to be put in.
>
> Now, I want to compile a list of each different year and how many users are in
> that year.
>
> Is there a way to do this beyond
ething] being picked up
> by mySQL db.
>
> this works :
>
>
>
> this doesn't work :
>
> printf(" href=\"pro_page1.php3?title='urlencode($myrow[title])'\">")
>
> OR such combinations as given in the manual. I tried
>
you may need to use stripslashes
to get rid of the slashes. Also, why are you using printf, but not
formatting your string at all? Why don't you just use echo? I assume we're
still dealing with this line of code:
printf("")
J
on 3/4/01 12:20 PM, Thomas Edison Jr. at [EMAIL PROTECTED] wr
Clever. For those of us unfamiliar with bitwise ops, here's how this works:
The bitwise and op (&) works on bits like this:
dig1 dig2 Result
000
010
100
111
An even number's binary representation always ends with 0 (ie 12 = 1100)
while an odd ends with 1 (ie 13
e @ARGV instead of
<>) on your Porter stemmer program to make it work properly.
J
--
Julian Wood
Multimedia Developer
University of Calgary
on 3/5/01 11:53 PM, Matt Friedman at [EMAIL PROTECTED] wrote:
> I'm stumped. I've searched all over and can't figure this one out.
.
HTH,
Julian
on 3/10/01 12:11 PM, John Vanderbeck at [EMAIL PROTECTED] wrote:
>
>
> Ok,
>
> Well I got 3 replies saying that my use of && is incorrect, and that I
> should use AND. This confused me for 2 reasons. First, is that I use && in
> all my other
pecific db
features. Does that help?
J
on 3/16/01 7:36 PM, andrew at [EMAIL PROTECTED] wrote:
>
> On a related noted, does PHP have JDBC support?
>
> I'm unable to find anything about this - anyone know if it's possible?
>
> regards,
> andrew
>
>
--
Juli
wondering if PHP can use JDBC drivers to connect to
> databases. what is the 'abstracted db layer' that you mention?
>
> regards,
> andrew
>
>
> On 3/17/01 2:52 PM, "Julian Wood" <[EMAIL PROTECTED]> wrote:
>
>>
>> I'm not quite
the lack of subqueries
in mysql). I guess what I'm asking - can you do a join on the mysql
resultset array somehow. I know in the perl DBI you can get a column of
results, but can't find it in php.
Thx.
J
--
Julian Wood
Learning Technologies and Digital Media
University of Calgary
--
other inserts if one of them fails.
Julian
on 4/18/01 6:33 PM, Steve Werby at [EMAIL PROTECTED] wrote:
>
> "Fates" <[EMAIL PROTECTED]> wrote:
>> I know how to add data to one table but how do I add data to three
>> tables from one form?
>>
>> I w
exposed to the peculiarities of the client filesystem. And if you're writing
a network client, this would be taken care of by the API.
Julian
on 4/19/01 7:52 PM, Shawn Reed at [EMAIL PROTECTED] wrote:
>
> Greetings all,
>
> I'm currently in the middle of developing a rather
You might also want to remove the comma after "url = '$url'" and try an echo
mysql_error($link) to see what the problem is.
Julian
on 5/14/01 5:46 PM, Peter Houchin - SunRentals Australia at
[EMAIL PROTECTED] wrote:
> change it to
>
> $sql = "UPDATE CLASS
that will be
stripped) but most file formats are flat these days anyway. I'm not sure
about Quark. IE 4.5 should *not* be uploading in MacBinary, so I guess
that's a bug they fixed for 5.0. See if you can upload a gif or a jpeg file
and retrieve it properly. There shouldn't be a pr
thing you need to get
going.
Julian
--
Julian Wood
Multimedia Developer
University of Calgary
on 3/22/01 11:28 AM, John Almberg at [EMAIL PROTECTED] wrote:
>
> Hello Sebastian,
>
> What a timely posting! I am trying to figure out how to allow a user (using
> any internet-conne
A class which allows you to post from within a php script and retrieve
the results:
http://px.sklar.com/code-pretty.html?code_id=313
Julian
On Sunday, July 8, 2001, at 11:22 PM, mike cullerton wrote:
>
> on 7/8/01 11:17 PM, Bob Horton at [EMAIL PROTECTED] wrote:
>
>> What if
finds the last ","||",$string);
//take out remaining (inner) tags.
$string = ereg_replace ("","",$string);
$string = ereg_replace ("","",$string);
thanks
Julian
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EM
To answer your question:
$postfld = $HTTP_POST_VARS[$fname[$i]];
should work. BTW, I just use something like:
if ($client) { // or in your case: if (${$fname[$i]})
// code to be evaluated if $client exists and is not 0, not null/void/nil, and is
not an empty string
}
J
Matthew DeChant wr
hahah that had two interesting effects the first was that it left the < > and the
second
was that it turned off all the highlighting in my editor due to the "?>"
any idea how to include the braces in the match and perhaps not using the ?> string
for the sake of conve
hole string into one space.
aparently regex will match the biggest possible match rather than the smallest
my question is how do i get it to match the smallest.
thanx in advance..
Julian
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional comm
mns
corectly and cut and paste the
exact same query on that page IT WORKS
Why would it work on that page but not the other. both are supposed to be places where
you can enter a normal sql
query..
It also doesn't work in my PHP script which is where I really want it to work.
What am I
before. So, any idea what is going on?
Why timeout at 300s instead of the 30s or the 12000s which are the only
two values reported? Any other workarounds? This is php 4.0
Thanks, J
--
Julian Wood
Programmer/Analyst
University of Calgary
--
PHP General Mailing List (http://www.php.net/)
To
ondering where they are
> coming
> from.
>
> TIA
>
> Kirk
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail
keep one
copy of the data and use references for the other records? Does this
work if 7 out of the 8 columns (for instance) are identical (ie the
primary key is different but everything else is identical). Do such db's
exist? Or do they all do this? Or am I just dreaming?
J
--
Julian Wood
Maybe it's just as unrealistic at a low level, but I could swear I had
heard of this feature before.
Oh well.
J
PS. I didn't mention this before, but a link table (ie a relational
structure) is not possible in my situation.
On Wednesday, August 29, 2001, at 01:47 PM, james wrote:
ntage of limit? Two queries or a single query? Any other
solutions? Any more insights on how limit works?
Julian
On Wednesday, September 12, 2001, at 10:16 PM, Adrian D'Costa wrote:
>
> Hi,
>
> I am trying to find out the the best way to do the following:
>
> I have a scr
I set up a simple form to save comments on my webpage, and after just one
day of going live, i'm getting weird comments up like this
declare @q varchar(8000) select @q =
0x57414954464F522044454C4159202730303A30303A313027 exec(@q)
I don't recognise this code - is this an attempt to do somethi
) be unaffected? I assume those are
restricted by virtue of include_path.
- Julian
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hi,
I use the pretty large Library PHP Image Workshop
(http://phpimageworkshop.com/) at my project. It is about 75,5 KB.
Everything works fine but if I try to include a 15 KB file with country
codes, it fails.
With the other files I easily get over 100 KB inclusion size, so my
question;
, 2013 at 12:49 PM, Julian Wanke <billa...@gmx.at> wrote:
Hi,
I use the pretty large Library PHP Image Workshop (http://phpimageworkshop.com/) at my project. It is about 75,5 KB. Everything works fine but if I try to include a 15 KB file with country codes, it fails.
With the other files I
Try to add
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
that should exclude existing files and directories from rewriting...
Am 01.06.2013, 22:39 Uhr, schrieb Farzan Dalaee :
i starting to use mod rewrite but all my images or js links doest work
my current query stri
les/upload/images/
but my images folder in:http://localhost/framework/files/upload/images/
On Sun, Jun 2, 2013 at 1:11 AM, Julian Wanke <jswp...@gmx.at> wrote:
Try to add
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
that should exclude existing files and directorie
A database for each client? Isn't that over-powered? If you have 1000
clients, you would loose the overview over your databases...
Am 08.06.2013, 21:46 Uhr, schrieb Tedd Sperling :
On Jun 8, 2013, at 3:00 PM, Ashley Sheridan
wrote:
dealTek wrote:
I can see the basic need for a table pr
Tell this the facebook, google or nsa data team ^^
Am 10.06.2013, 16:15 Uhr, schrieb Tedd Sperling :
On Jun 8, 2013, at 4:17 PM, Julian Wanke wrote:
A database for each client? Isn't that over-powered? If you have 1000
clients, you would loose the overview over your databases...
1000 clients to a single person.
Cheers,
tedd
_
tedd.sperl...@gmail.com
http://sperling.com
On Jun 10, 2013, at 2:11 PM, Julian Wanke wrote:
Tell this the facebook, google or nsa data team ^^
Am 10.06.2013, 16:15 Uhr, schrieb Tedd Sperling
:
On Jun 8, 2013, at 4:
I think that the problem here is, that the unset of the
$_SERVER["PHP_AUTH_USER"] variable is not affecting the client's browser.
If you've got a directory protection, the browser needs a restart to show
the login dialog before.
I may be wrong because I'm using forms normally but the Authentifi
013, 23:14 Uhr, schrieb Jim Giner :
On 6/10/2013 4:33 PM, Julian Wanke wrote:
I think that the problem here is, that the unset of the
$_SERVER["PHP_AUTH_USER"] variable is not affecting the client's
browser.
If you've got a directory protection, the browser needs a restart
They do, afaik...
Am 15.06.2013, 20:11 Uhr, schrieb Tamara Temple :
Marc Guay wrote:
$('.lightbox-image-class').click(function(){
$.post('ajax.php', {click: true});
});
Do javascript DOM events stack? If they do, this is definitely the
simplest way to go. If they don't, you need to capt
On Thursday 10 April 2008 16:32, Paul van Brouwershaven wrote:
> Have you seen the Google App Engine already, the guys from Google are
> crazy! You now can host your application on the Google network, including
> Big Table and GFS!
>
> Ok, one problem... they currently only support Python for progr
Hi all,
I've a problem thats been bothering me for a week now
I have an array $animals
keys and values like this
1 => cat
2 => dog
3 => mouse
4 => horse
I want to be able to access them using either a key or a pointer, however
the key/pointer will be a variable
without variables, if I want
will set the element of ordinal number 0 and key ' 2' to 'dog'. To get
that value you would either ask for $array[0] or $array[' 2'].
thanks for all the comments so far, i'm not sure you are understanding what
I am asking for.
My problem is NOT knowing what is in the arrays, but how to ac
Hi all,
I am having a nightmare accessing my POST variables. I can red them if I use
the GET method on my form, but POST is always blank
I have
while( list($key, $value) = each ($_POST)){
print "$key $value";
}
print "_REQUEST: "; print_r($_REQUEST);
print "_GET: "; print_r($_GET);
print "_PO
Hi Richard
yes it happens in Netscape 7 too,
The thing is, it works in perl when I access the query string. But not in
php.
could it be a setting in php.ini?
Jules
- Original Message -
From: "Richard Davey" <[EMAIL PROTECTED]>
To: "julian haffegee" <[
Hi Chris
print_r($_REQUEST); (is this what you mean by HTTP Request?)
print_r($_POST);
print_r($_GET);
all give Array()
its apache release 10327100 (is that what you mean?)
If I change the form method to GET works, and we get
REQUEST: Array ( [username] => aa [password] => aa )
_GET: Array (
Hi all,
I solved this today. It seems odd.
If you define an action it DOES NOT work, but if you skip that entirely the
POST variables are sent!
so
works
doesn't work.
Why would this be?
thanks
Jules
- Original Message -
From: "julian haffegee" <[EMAIL PROTE
Hi all,
I have a page that lets people upload images - they are then resized for use
throughout my site.
It all works fine, but I need to reduce the jpg size (without reducing image
size)
Is there a php function that lets you compress the jpg?
Thanks
Jules
--
PHP General Mailing List (
Why not use the php mechanism itself? An easy way to do a template system is
make a normal php page as a template, and then include it from another page
after specifying a bunch of variables.
eg.
template.php:
=
calling page:
=
Hope this helps,
Julian
on 1/27/01 6
Maybe I'm misunderstanding something. I'm suggesting that you not bother at
all with an ereg_replace system.
If you want to do a system like you're suggesting, you would use a variable
variable. That is, ${$var} will evaluate to 'Hello' when $var = 'title'
Are you looking for select topicID, count(*) from $secondtable group by
topicID? This will give you a count of each distinct topicID in
$secondtable.
Julian
--
Julian Wood
Multimedia Developer
University of Calgary
on 2/2/01 6:15 PM, Sandeep Hundal at [EMAIL PROTECTED] wrote:
>
&g
I'ts also the small footprint (ideal for racking at large ISP's and Data
Centres: the prime market positioning of these boxes) and excellent MTBF's
(they just keep on trucking..)
You can also install SSH to maintain an encrypted 'telnet' session.
Julian
- Original
>From Allaire's (Homesite) web page:
"When InternetWorld surveyed 136 professional design firms (iXL, USWeb,
Modem Media, TVisions, Organic Online, etc.) in October 1999, HomeSite was
the most popular HTML tool:
Allaire HomeSite - 52.9%
Bare Bones BBEdit (Mac) - 42.6%
Microsoft FrontPage - 22.8
Anyone know how to use the PHP date functions to work out the difference
between two timestamps?
For example..
Figure out the number of seconds, minutes, hours, days, months and years
between
5th October 2001 14:20:10
and
26th February 1998 109:54:10
Help much appreciated!
thanks
Julian
with Unix I'm afraid..
Thanks for your reply!
Julian
[EMAIL PROTECTED] wrote:
> On Sun, Feb 18, 2001 at 04:40:08PM -0700, Julian Rockeu wrote:
>
>> Anyone know how to use the PHP date functions to work out the difference
>> between two timestamps?
>>
>> For exa
$res = $a->send();
#strip header
$res = strstr($res, "\r\n\r\n");
#display the results
echo $res;
?>
HTH,
J
--
Julian Wood
Multimedia Developer
University of Calgary
on 2/19/01 10:15 AM, John Monfort at [EMAIL PROTECTED] wrote:
>
>
>
>> 1. It appears
problem - post from
flash to a php script - the script can do the unlink (make sure you have
correct permissions and *build* the correct path), then return a result code
back to flash. Not sure if I'm on target for your question or not.
HTH,
J
--
Julian Wood
Multimedia Developer
University of
very much in advance for your support.
Regards
Julian
information.
What the problem was for some reason I was did not create an instance of the
function class, just was calling the function. Well by creating the runner
class I solved the problem.
Thanks all for your help.
Regards
Julian
DESIGN IS THE BASIS OF EVERYHTHING.
Through this you will learn other things such as SDLC - Software Develpment
Life Cycle. There are many diffrent models you may use to develop an
profesional application. In the end its up to you to choose.
Regards
Julian
On Tue, Jun 2, 2009 at 6:50 AM, Angus
One final update.
The way one sets the path to required files is very important. I found it is
best to use instead of relative paths.
Regards
Julian
On Fri, Jun 5, 2009 at 2:19 PM, Julian Muscat Doublesin <
opensourc...@gmail.com> wrote:
> Update.
>
> Hello Everyone,
>
>
ks in advance
Julian
I had a problem with the include and require paths when using AJAX. This I
have solved by using the document root. However since doing so I am
experiencing performance issues. Loading 20 records has suddenly turned into
something of a matter of a minute rather then seconds.
Has anyone ever experie
Hello* *Everyone,
I am geetting the error below. Can you please guide me on a fix. It is
working on the live site but not on local server. Has anyone ever experinced
this error before.
*
Warning*: parse_str() expects parameter 1 to be string, array given**
.
Thank you very much in advance.
Julian
Hi,
Just to update every one. This solution below worked perfectly. Thank you
very much Jonathan. I have one other question though. Can anyone help me on
the folowing. Database Error: Unable to connect to the database:The MySQL
adapter "mysql" is not available.
Thank you
Julian
On F
1 - 100 of 104 matches
Mail list logo