Hi!
I'd like to ask if there is any function for saving image into (windows)
BMP format (not wbmp - which is wireless BMP).
e.g. imagejpg() will save jpg file
Jan
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hi! Is there a way to use suexec with a non-cgi version of php? Or is there
any other way to do the same job as suexec would do?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hello!
I have a PHP class here that can fetch that information for you from the
XML sheet provided by the server. I'll send it to you if you want, I
forgot where I downloaded it (you could check www.hotscripts.com though).
//Simon
Ben Paul wrote:
Hello,
I am currently streaming via shoutcast
no.
i`m not trying to upload file on server.
i want to send e-mail with attachments but if it's possible without
using classes.
i thought that file should be first uploaded and then send with e-mail as
attachment, maybe uploading isn't correct...
i don't know how to do it.
szparag
--
PHP Ge
hello,
i have got a problem with SQL select:
I have got a table such this:
id_k typ name id
1 f bla1 1
2 f bla2 1
2 i bla3 1
3 z bla4 1
3 f bla5 1
4 i bla6 1
4 z bla7 1
5 z bla8 1
and id = 1 and I need select these rows:
id_k typ nazev i
Hello php-general,
some hacker just tries his luck everyday to get me pissed, is it
possible to make php files not downloadable? or coded? or something?
because some dude knows my passwords every time, and with them
passes the shity security to main user, thank god not root.
So is there
Hello php-general,
my server is running freebsd 5.0
and yet i havent fixed bug that i knew long time ago, so can anyone
point me with some links or resources about it, i could not find any
good on google, maybe i don't know how to search.
The problem is
if the make script
and then just w
Hi,
Thursday, July 10, 2003, 12:41:28 AM, you wrote:
DJ> Hi All,
DJ> I have the following function:
DJ> function encrypt ($x) {
DJ> $ini = parse_ini_file ($GLOBALS['INI_PATH']);
DJ> $td = mcrypt_module_open ('tripledes', '', 'e
Hi everyone,
I would like to thank all the people that have answered my question and all the
others that didn't have the time to answer it. As I have seen, the opinions on
this point are quite different and the answer is not as evident as the technical
director affirmed to me.
Thank you.
Sergio
I did not understand you much but would not this work?
SELECT * FROM table WHERE typ='f' OR typ='i'
Jiří Němec wrote:
hello,
i have got a problem with SQL select:
I have got a table such this:
id_k typ name id
1 f bla1 1
2 f bla2 1
2 i bla3 1
3 z bla4 1
3 f bla5
Do you use secure connection? Well, you should.
Mantas Kriauciunas wrote:
Hello php-general,
some hacker just tries his luck everyday to get me pissed, is it
possible to make php files not downloadable? or coded? or something?
because some dude knows my passwords every time, and with them
hi,
JiøîÆèî eË wrote:
> hello,
>
> i have got a problem with SQL select:
>
> I have got a table such this:
>
> id_k typ name id
> 1 f bla1 1
> 2 f bla2 1
> 2 i bla3 1
> 3 z bla4 1
> 3 f bla5 1
> 4 i bla6 1
> 4 z bla7 1
> 5 z bla8 1
>
> and id
Mantas Kriauciunas wrote:
The problem is
if the make script
and then just write
test.php?id=/etc/passwd , they see all the file.
Check if $id is valid. Exact way depends on the structure of the files.
Example 1: All included files are in web root and are named
something.html, something can c
Sure there is, the same way as in the cgi version. Safe mode must be off.
Fejes Jozsef wrote:
Hi! Is there a way to use suexec with a non-cgi version of php? Or is there
any other way to do the same job as suexec would do?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visi
php-general Digest 10 Jul 2003 10:18:09 - Issue 2167
Topics (messages 154646 through 154697):
Windows 2k, Apache, MySQL, PHP 4.3.2, Smarty
154646 by: Michael Smith
Returning values from functions
154647 by: Jason Giangrande
154648 by: David Nicholson
154649 b
You mean killing the session cookie?
setcookie (session_name(), "", time() - 3600);
session_unset(); // or $_SESSION = array();
session_destroy();
Bruce Bruen wrote:
Hi, this is my first question to the list and ... Yes I'm a newbie,
verrry wet behind the ears.
I am trying to set up a secured site
Hello,
I have a problem with php 4.3.2.
I have a php code and i used sessions, that code works properly in php
4.3.0 and now after upgrade php to 4.3.2 version not work.
Any ideas about this.
thanks
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/u
Hello Marek,
Thanks for the answer, but i think you misunderstood me because of my
bad english. What i mean is the people with that code can access and
view files on any place on my server and see the passwords stored in
some files, decode them, and do stuff like that. I wanted to know how
to prev
> So is there any way?
http://www.turcksoft.com/en/e_mmc.htm
Hope it helps...
Nadim Attari
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
session_destroy();
session_unset();
-Original Message-
From: Bruce Bruen [mailto:[EMAIL PROTECTED]
Sent: Thursday, July 10, 2003 4:18 PM
To: [EMAIL PROTECTED]
Subject: [PHP] Blatant newbie question - killing a session
Hi, this is my first question to the list and ... Yes I'm a newbie,
ve
Exactly like I said, just check this:
$id='/etc/passwd';
if($id && eregi('^[a-z0-9_]+\.html',$id)) include($id);
else die('Go away!');
The regular expression prevents anyone from accessing any file that is
not in your web root (http://your.server.net/) or its name does contain
any other character
On Thursday 10 July 2003 18:26, Tassos T wrote:
> I have a problem with php 4.3.2.
> I have a php code and i used sessions, that code works properly in php
> 4.3.0 and now after upgrade php to 4.3.2 version not work.
>
> Any ideas about this.
- Read the release notes
- Read the change log
- Compa
> Sure there is, the same way as in the cgi version. Safe mode must be off.
>
Safe mode is off, suexec is turned on. In the logfiles, I see that suexec
engine is turned on or something like that, the path is correct too. Suexec
and the virtualhost are configured alright because for cgi programs, i
On Thursday 10 July 2003 16:22, szparag wrote:
> no.
>
> i`m not trying to upload file on server.
> i want to send e-mail with attachments but if it's possible without
> using classes.
>
> i thought that file should be first uploaded and then send with e-mail as
> attachment, maybe uploading isn't
On Thursday 10 July 2003 17:26, Mantas Kriauciunas wrote:
> my server is running freebsd 5.0
>
> and yet i havent fixed bug that i knew long time ago, so can anyone
> point me with some links or resources about it, i could not find any
> good on google, maybe i don't know how to search.
First
how do i have to configure my httpd.conf to run both, php4 and php5
i have php4 in c:\php
where schould i put the php5 stuff ?
do i need only one php.ini or two?
questions, questions, questions
mfg.
harry wiens
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://w
Sorry, my fault. I was wrong, suexec can work only for cgi.
Fejes Jozsef wrote:
Sure there is, the same way as in the cgi version. Safe mode must be off.
Safe mode is off, suexec is turned on. In the logfiles, I see that suexec
engine is turned on or something like that, the path is correct to
My method is:
1. check if id starts with /
if(ereg("^\/", $id))
goaway;
2. check if there is .. in it
if(ereg("\.\.", $id))
goaway;
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hello,
Metastorage generates form handling classes
In the continuation of the work to achieve further reduction of
application development efforts, the new release of Metastorage is now
capable of generating automatically classes that are able to handle
Web forms that serve as user interface to c
Add a check for php files, or any other files you don't want anybody to
include:
if(ereg('php[0-9]$', $id))
goaway;
Fejes Jozsef wrote:
My method is:
1. check if id starts with /
if(ereg("^\/", $id))
goaway;
2. check if there is .. in it
if(ereg("\.\.", $id))
goaway;
--
PHP General Ma
At 13:45 10-7-03, Marek wrote:
Add a check for php files, or any other files you don't want anybody to
include:
if(ereg('php[0-9]$', $id))
goaway;
but what about '?' and '#' additions?
$id="however_they_would_find_out/your_path/file.php?extra=x#loc";
?
so maybe
if(ereg('\.php', $id)) ?
-
>> So how to make sure that no one can access other people files and
>> server files? and is there any way that nobody would be able to
>> download php files or how to make them look like code when they are
>> downloaded. Thanks!
I think he means "How do I keep people who have access to upload
Anyone know how I can stip off the end of a folder location, so that it will
be a folder in the next level up? I want to turn something like this:
/path/to/folder/MyFolder/
into somthing like this:
/path/to/folder/
I just need to strip off the last folder and that is it. Can anyone help me
Where is mssql.dll (not include in packages 4.1.2 / 4.2.3 / 4.3.2 ?
Thanks
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
muwangatapio
[EMAIL PROTECTED]
.
Firstly, I am Muwanga tapio, the first son and the Asst. chiarman of (muwanga's
farms zimbabwe,)and my father Mr.Tapio Andrew one of the black farmers in Zimbabwe who
was recently murdered in the land dispute in my country zimbabwe. I got your
contact t
On Thursday 10 July 2003 20:03, Matt Palermo wrote:
> Anyone know how I can stip off the end of a folder location, so that it
> will be a folder in the next level up? I want to turn something like this:
>
> /path/to/folder/MyFolder/
>
> into somthing like this:
>
> /path/to/folder/
>
> I just need
Hi,
> I use this to set iv to null so I don't need to worry about it :)
>
> $iv = pack("a".mcrypt_enc_get_iv_size($td),$iv);
Ahh ok, I'll give that a try and let you know how it comes out. Thanks!
-Dan Joseph
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: ht
Hello,
This is a reply to an e-mail that you wrote on Thu, 10 Jul 2003 at 13:04,
lines prefixed by '>' were originally written by you.
> Anyone know how I can stip off the end of a folder location, so that
> it will
> be a folder in the next level up? I want to turn something like
this:
> /path/
Hi there!
I had a perfectly working installation of apache 1.23 and php4.12 -
unfortunatly i got heavy problems with the mail()
function that didnt seem to like my subjects and froms. anyway - i just
de-installed apache and php and reinstalled the
most recent versions (apache 1.27 and php 4.32) -
At 14:47 10-7-03, you wrote:
NET HELPMSG 3534
So i asked google and i found
http://www.webdesignforums.net/thread4300.html and there the suggestion was
made to put the path for the module between "quotes". otherwise the space
in for example
/program files/
causes this error.
example:
change
Loa
hi,
Johannes Reichardt wrote:
> Hi there!
>
> I had a perfectly working installation of apache 1.23 and php4.12 -
> unfortunatly i got heavy problems with the mail()
> function that didnt seem to like my subjects and froms. anyway - i
> just de-installed apache and php and reinstalled the
> most
> But _why_ do you need to write to the root directory? Why not
> just write to a directory where you *do* have permission to write to?
I can already do that.
My problem is that I need to move or copy/delete the file from the place
I do have permission to write to to the root.
I have generated
Hey guys,
I made a class to work with file upload.
I used the php function is_executable. and in php 4.2.x it works ok, on linux and on
windows.
Last week I update my php to 4.3.x and this function stop work. In fact I got this
error. undefinied function.
Does anyone can help?
thanks
I have just recently written a complete webmail software using PHP, and
need to implement features that determin whether the email has been read
or not.
The function imap_setflag_full can set the flag, but i have no way of
seeing which e-mails have what flags.
imap_search allows you to search
... and what about dirname()?
Matt Palermo wrote:
> Anyone know how I can stip off the end of a folder location, so that
> it will be a folder in the next level up? I want to turn something
> like this:
>
> /path/to/folder/MyFolder/
>
> into somthing like this:
>
> /path/to/folder/
>
> I just nee
HI,
I'm storing the sessions ids in a database table. I
want to run a script that reads from the table every
session id and check if this session is active or not.
I know that session information is stored in a
directory (/tmp by default) and removed from there
when the session is closed. But if
You don't realy need it. Session garbage colector removes old session
files for you.
Nagib Abi Fadel wrote:
HI,
I'm storing the sessions ids in a database table. I
want to run a script that reads from the table every
session id and check if this session is active or not.
I know that session inf
I have the following code :
Quote:
if (isset($SenderEmailAddress)){
mail($mailTo, $mailSubject, $Message);
}
Unquote
All I want to do is that , if the $SenderEmailAddress is not entered, the
mail() function should not run. However,
if the $senderEmailAddress variable is not set, the err
Hi,
> if the make script
> and then just write
> test.php?id=/etc/passwd , they see all the file.
Well, FreeBSD provides a way to jail webservers: Jails 8-)
http://www.freebsd.org/doc/en_US.ISO8859-1/books/developers-handbook/jail.html
with best regards
--
Andreas Mendyk [EMAIL PROTE
What about the rest of the code? How is this variable defined? I have
had this happen in some code before, I found that the variable was set to
"". Try using:
if (isset($SenderEmailAddress) && $SenderEmailAddress != "") {
mail($mailTo, $mailSubject, $Message);
}
> I have the following code :
--- Michael Smith <[EMAIL PROTECTED]> wrote:
> Problem with Smarty. My application is giving me an error when i
> try to
> use smarty on a new WAMP install. Smarty is in my include path.
> Getting
> this error:
>
> *Fatal error*: Call to undefined function: () in
> *c:\htdocs\smarty\Smarty.cla
Tim Steele wrote:
> i need to uses reg ex to change to target=_blank>
>
> the < brackets have to be represented using < and >
>
> I have tried so many ways, but none work. here is an example of my
> faliure.
>
> $body =
> preg_replace("/(href=\/?)(\w+)(>\/?)/e","'\\1'.'\\2'./'target=_blank/
> '.'
... or:
if(!empty($SenderEmailAddress))
{
...
}
Dean E. Weimer wrote:
> What about the rest of the code? How is this variable defined? I
> have had this happen in some code before, I found that the variable
> was set to "". Try using:
>
> if (isset($SenderEmailAddress) && $SenderEmailAddress !
Hi All
Im new to php and are getting a bit confused about the sybase_fetch_array function (i
think that this is the same as mysql_fetch_array?).
If i have a valid sql query that returns three the records 'john','jack' and 'mary'
and i want to put that into an array where array[0]->john,array[
Hello,
This is a reply to an e-mail that you wrote on Thu, 10 Jul 2003 at 15:30,
lines prefixed by '>' were originally written by you.
> If i have a valid sql query that returns three the records
> 'john','jack' and 'mary' and i want to put that into an array where
> array[0]->john,array[1]->jack
try this:
$query = "select name from names (where age <'23'')";
$numero= sybase_connect("database" , "user" , "password" ) or die ("Unable
to connect to database server");
$result=sybase_query($query,$numero );
while($temp=sybase_fetch_array($result)){
$names[] = $temp[name];
}
mfg.
harry wie
On Thursday 10 July 2003 21:04, Steve Jackson wrote:
> > But _why_ do you need to write to the root directory? Why not
> > just write to a directory where you *do* have permission to write to?
>
> I can already do that.
> My problem is that I need to move or copy/delete the file from the place
> I
On Thursday 10 July 2003 21:53, Denis L. Menezes wrote:
> I have the following code :
>
> Quote:
>
> if (isset($SenderEmailAddress)){
> mail($mailTo, $mailSubject, $Message);
> }
>
> Unquote
>
> All I want to do is that , if the $SenderEmailAddress is not entered, the
> mail() function shou
You had an tag in your email, so I assumed you were trying to
upload the file. If the file is not already on the server, you *will*
have to upload it before emailing it. But that's a whole other
matter.
If you look at the classes and see how they attach a file, you should
be able to figure it out
Yes, that was the problem. I found out earlier today.
Thanks.
- Original Message -
From: Jason Wong <[EMAIL PROTECTED]>
Newsgroups: php.general
To: <[EMAIL PROTECTED]>
Sent: Thursday, July 10, 2003 8:31 AM
Subject: Re: [PHP] problem with php-4.3.2 and gblib 2 on apache server
> On Thu
Live server was previously a 4.0.4 install that we upgraded to 4.2.2
Am getting ready to upgrade it again to 4.3.2 and wish to verify some things.
1) any caveats to be aware of?
2) it appears from reading INSTALL that a seperate build isn't required if we
want to run both dynamic and static, just
> Jiøí Nìmec wrote:
>
> > hello,
> >
> > i have got a problem with SQL select:
> >
> > I have got a table such this:
> >
> > id_k typ name id
> > 1 f bla1 1
> > 2 f bla2 1
> > 2 i bla3 1
> > 3 z bla4 1
> > 3 f bla5 1
> > 4 i bla6 1
> > 4 z bla7 1
Can anyone help me with this code I just get someting about $end & help me fix it
Thanks
Parse error: parse error, unexpected $end in C:/apache/htdocs/test.php on line 73
Control Panel
Welcome to The Control Panel
Installer
This will install the control Panel
Please enter your site d
You're missing at least one closing brace (}) -- the one that belongs
with the
else if ($login=="check") {
ten or so lines up from the bottom.
---
Mark Roedel | "Blessed is he who has learned to laugh
Systems Programmer| at himself, for he shall never cease
LeTourneau Uni
Hmm. How about:
SELECT DISTINCT id_k, name FROM tablename WHERE typ != 'z' ORDER BY typ
ASC;
Does that work?
On Thu, 2003-07-10 at 11:29, Mark wrote:
> > Jiøí Nìmec wrote:
> >
> > > hello,
> > >
> > > i have got a problem with SQL select:
> > >
> > > I have got a table such this:
> > >
> > >
There is no reliable way for the server (Apache, PHP, etc)
to know when a user closes a session by closing his browser
window. That's one reason why session-management sytems
always employ a timeout on sessions. I don't know what the
default timeout is for the PHP session-management system,
bu
Well for one thing, you've misspelled one of your variables...
the if ($instal=="0") should be, if I'm not incorrect,
if ($install=="0")
Mark Clarkstone wrote:
Can anyone help me with this code I just get someting about $end & help me fix it
Thanks
Parse error: parse error, unexpected $end in
The array structure is the one suggested on the xml_parse_into_struct page
user comments. Our example XML would parse into this:
Array
(
[ROOTELEMENT] => Array
(
[0] => Array
(
[ATTRIBUTES] => Array
(
Interesting -- the clone_node() function does make certain that each element
gets its own representation in the output, for any XML I tested. I guess
then my problem lies with how I'm looping through the aforementioned array
structure to get the values themselves.
Thanks,
--
Matt Grimm
Web Develo
OMG Your Right no wonder it didn't work lol
"Shena Delian O'Brien" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Well for one thing, you've misspelled one of your variables...
>
> the if ($instal=="0") should be, if I'm not incorrect,
> if ($install=="0")
>
> Mark Clarkstone wrote
now the script works but won't write to the file just returns to the form.
Control Panel
Welcome to The Control Panel
Installer
This will install the control Panel
Please enter your site domain e.g.
freesite.cjb.com (without a www or a dot please) leave as localhost if you
are
using it a
Where are you passing the variable "install"? I can't see it in your
form. Perhaps look for $check instead of $install?
Mark Clarkstone wrote:
now the script works but won't write to the file just returns to the form.
Control Panel
if ($install=="0") {
print "Welcome to The Control Panel
Ins
> else if ($userlogin && $userpass == $admin && $adpw) {
this line probably isn't going to do what your thinking it will.
you probably want either
else if ($userlogin == $admin && $userpass == $adpw) {
or
else if (strcasecmp($userlogin,$admin) == 0 &&
strcasecmp($userpass,$adpw) ==
Its in cpconf.php
"Shena Delian O'Brien" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Where are you passing the variable "install"? I can't see it in your
> form. Perhaps look for $check instead of $install?
>
> Mark Clarkstone wrote:
> > now the script works but won't write t
Well you realize don't you that unless, on submit, install changes to 1,
whenever you submit your form it's going to go right back to the initial
page.
Mark Clarkstone wrote:
Its in cpconf.php
?>
"Shena Delian O'Brien" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
Where are yo
Good afternoon gurus and gurettes!
Has any of you had any experience using PPP (Point-to-Point Protocol)
with PHP? I need to work with it to establish a connection to a remote
server on a remote network and was hoping that I could use PHP.
Currently I can manually establish I dial-up using PPP ove
Umm, use exec() to call the dialing program?
On Thu, 2003-07-10 at 13:22, Jay Blanchard wrote:
> Good afternoon gurus and gurettes!
>
> Has any of you had any experience using PPP (Point-to-Point Protocol)
> with PHP? I need to work with it to establish a connection to a remote
> server on a re
I am in the process of developing a client side application that needs to
speak to our remote databases. Does anybody know of a hosting solution that
would allow me to have remote access to a MySQL database? I done some
googling and found a quite a few hosting companies, but none of them that I
h
[snip]
Umm, use exec() to call the dialing program?
[/snip]
That works on the surface, but the PPP program returns some vital
information about its connection status that is required for use by any
subsequent file operations. The information is returned via STDOUT.
Thanks!
Jay
--
PHP General Ma
You should also store passwords in a non-readable to the world directory.
-Dan
- Original Message -
From: "Marek Kilimajer" <[EMAIL PROTECTED]>
To: "Mantas Kriauciunas" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Thursday, July 10, 2003 5:01 AM
Subject: Re: [PHP] download php
>
>[snip]
>Umm, use exec() to call the dialing program?
>[/snip]
>
>That works on the surface, but the PPP program returns some vital
>information about its connection status that is required for use by any
>subsequent file operations. The information is returned via STDOUT.
so try system() instead.
Is there anyway I can use PHP4 and PHP5 (as modules, not cgi) together
in Apache2 (Linux)? I've tried the --enable-versioning configure option
with php, but I'm not quite sure what that does. I need PHP4 because
Gallery apparently won't work with PHP5.
If it's possible to load either php4 or ph
On Thursday, July 10, 2003, 3:03:43 PM, Alain wrote:
AR> Where is mssql.dll (not include in packages 4.1.2 / 4.2.3 / 4.3.2 ?
Don't send your messages high priority. Its considered rude and bad
list manners.
mssql.dll comes with the MSSQL product. Its not part of the package.
--
Regards,
Burha
On Thursday, July 10, 2003, 8:41:03 PM, Jay wrote:
JB> [snip]
JB> Umm, use exec() to call the dialing program?
JB> [/snip]
JB> That works on the surface, but the PPP program returns some vital
JB> information about its connection status that is required for use by any
JB> subsequent file operatio
First,
I need the code to replace the link in a string, like
with
ereg_replace("''", "''",
$old);
That was the closest i got, but (.*) makes it take the first BASE HREF, and
the last ">, which sucks.
Can anyone help?
Second,
I hate asking for help on Regexps...I would like a tutorial online t
Please use more intelligent and descriptive subjects for your posts.
This HELP!!! nonsense is stupid.
--
Regards,
Burhan Khalid
phplist[at]meidomus[dot]com
http://www.meidomus.com
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
yes
"Shena Delian O'Brien" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Well you realize don't you that unless, on submit, install changes to 1,
> whenever you submit your form it's going to go right back to the initial
> page.
>
> Mark Clarkstone wrote:
> > Its in cpconf.php
> >
Hi all,
Does anyone know of any free Excel parsing non-COM code available on the
net? Just straight php driven?
I've found a couple commercial solutions but would like to try this myself
or save money. Thanks for any help.
Johnny
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe,
Well I've made a signifigant improvement to this function, and it's now the
parsing operation is only something like 26 lines. It works flawlessly (so
far) for XML that does not have repeat element names on the same level.
Which seems to be bad form anyway, using similar element names and
distingu
Oh well I am sorry your royal majesty
- Original Message -
From: "Burhan Khalid" <[EMAIL PROTECTED]>
To: "Mark Clarkstone" <[EMAIL PROTECTED]>;
<[EMAIL PROTECTED]>
Sent: Thursday, July 10, 2003 7:26 PM
Subject: Re: [PHP] HELP can someone tell me
whats wrong her
Mark Clarkstone wrote:
yes
Well since that's what you said happens, isn't that where you should
look for the problem? My guess is that install isn't changing to 1. I
would change your line to:
if ( ($install == "0") && (!$check) ) {
instead of just:
if ($install=="0") {
"Shena Delian O'Br
Does anyone know of any free Excel parsing non-COM code available on
the
net? Just straight php driven?
I have not tried any of these but there might be something in here you
can use.
http://www.phpclasses.org/search.html?words=Excel&go_search=1
--
PHP General Mailing List (http://www.php.ne
There is a PEAR package called Spreadsheet_Excel_Writer, that is non-COM. It
works great, only one problem. The max string length is 255 characters. For
it you are not export any fields greater then 255 it works great.
There is also an other excel class on www.phpclasses.org. Called php2excel
I t
I've got a user that gets an Excel spreadsheet generated by a web app and I
want to be able to import the data from the xls into our local database then
work with it.
-Original Message-
From: Mark McCulligh [mailto:[EMAIL PROTECTED]
Sent: Thursday, July 10, 2003 11:32 AM
To: [EMAIL PROTECT
I've read somewhere about some asptophp convertor/tool/methodology...??
Don't know what it is, that's why I'm asking.
I've been asked to help out on a project which might include some
already developed basic ASP code. I would rather do it in PHP.
--
PHP General Mailing List (http://www.php.ne
Here's something I cant explain:
I have a page with a form on it (checkboxes) and a hyperlink which is
supposed to send the form to the server using:
Trouble is that the link always points to the name of the previous page I
came from. All pages are php generated on-the-fly.
Is this a php problem
Hi,
> Here's something I cant explain:
> I have a page with a form on it (checkboxes) and a hyperlink which is
> supposed to send the form to the server using:
>
> Trouble is that the link always points to the name of the
> previous page I
> came from. All pages are php generated on-the-fly.
On 10 Jul 2003, Jonathan Villa wrote:
> I've read somewhere about some asptophp convertor/tool/methodology...??
> Don't know what it is, that's why I'm asking.
>
> I've been asked to help out on a project which might include some
> already developed basic ASP code. I would rather do it in PHP.
> The root of the problem (pun intended)
Oh dear! ;o)
> is that you're trying to
> write to the
> root (/) directory which is usually only possible if you're the root user.
>
> Again, the question is _why_ do you need to write to the root directory?
> Wouldn't your file function if it wasn't
Hi,
> > Are you using the variable $_SERVER['PHP_SELF'] for your
> link target?
>
> I'm not, I'm a total newbie and don't quite understand, you mean
> instead of
> href="#" use href=$_SERVER['PHP_SELF']?
> Please bare with me and explain.
Yeah, it would be:
If t
1 - 100 of 154 matches
Mail list logo