[PHP] Email Problems

2003-01-22 Thread Gary
Hi, Can anyone tell me what may be wrong with my email configuration? I am using Microsoft Outlook with a Microsoft Exchange Server. My PHP programs can no longer send emails. They were able to before, seems like it stopped about a month ago. I don't believe I have changed anything. And it's

[PHP] php_flag session.auto_start 0 not working

2003-02-26 Thread Gary
['style']) ) { $_SESSION['style'] = $_GET['style']; } elseif ( !isset($_SESSION['style']) ) { $_SESSION['style'] = 'styles'; } TIA Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Mail() Failing to connect

2003-02-28 Thread Gary
Does anyone have any idea of why I may be getting this error, when my scripts ran perfectly fine before (i don't know what). Is there some kind of setting in my mail program that may have changed? I'm using Outlook with Exchange Server. Warning: Failed to Connect in d:\apache\htdocs/emailtest.php

[PHP] Supressing a session id in link

2003-03-04 Thread Gary
http://validator.w3.org/check?uri=http%3A%2F%2Fnemesis1.f2o.org I have tried not starting the session until the link is clicked but then the session does not carry over to the next page. Any Ideas? TIA Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.ph

Re: [PHP] Supressing a session id in link

2003-03-04 Thread Gary
ried not starting the session until the link is clicked but then G> the session does not carry over to the next page. Any Ideas? G> TIA G> Gary It's the '&' that they are objecting to, change this line in your php.ini to the following: arg_separator.output = "&a

[PHP] require_once adds a "1"

2003-03-07 Thread Gary
ly as I want it with the addition of two ones "11"s can anyone tell me how to get rid of the ones? (if I run anyfile.php by itself there are no "1"s) Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: require_once adds a "1"

2003-03-07 Thread Gary
Thank you for your replies they are appreciated, I've tried a few things in response to your answers but all I can get is either "1" by it self or no include. Ernest is correct in assuming there is code in the included file it is as follows perhaps you can see m

Re: [PHP] require_once adds a "1"

2003-03-07 Thread Gary
Thanks for your response James! but still I must be doing something wrong the "1" is a persistent little bugger. Have you any tips on how to rewrite: using the ob_methods? Again thanx for your response Gary James Holden wrote: > The '1' is received simply because your re

Re: [PHP] require_once adds a "1"

2003-03-07 Thread Gary
Ernest E Vogelsinger wrote: > At 20:19 07.03.2003, Gary said: > Rewrite this to just > require_once('topten.php'); Thanx Ernest! that does the trick Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] pass var through URL String

2002-09-19 Thread Gary
catch the var? TIA Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] pass var through URL String

2002-09-19 Thread Gary
Tried that already and get an error using $_GET['bname'] T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING using $_GET[bname] without the quotes Undefined index: bname Gary Kevin Stone wrote: > Pass the vars the same way. Use $_GET['bname

Re: [PHP] pass var through URL String

2002-09-19 Thread Gary
me by $owner "; } Gary Kevin Stone wrote: >There's obviously something wrong with the way you're handeling the new >variable. Do extract($_GET); and go back to the way you were handeling it >before. > >echo $bname; > >-Kevin > >- Original Messa

Re: [PHP] pass var through URL String

2002-09-19 Thread Gary
I was wrong, it is passing $bname. I have got it down to a syntax error by using. $sql = "SELECT * FROM bugs WHERE bname = {$_GET['bname']}"; gary Gary wrote: > I don't think it is being passed. I think I am going to have to figure > out how to pass bname i

[PHP] unexpected T_STRING error

2002-09-28 Thread Gary
Hi All, Can someone explain to me why I am getting an error for the following? $keywords = $_POST[keywords]; if ($keywords) { echo"<META NAME="keywords" CONTENT=" $keywords ">"; } TIA Gary -- PHP General Mailing List (http://www.php.net/) To un

Re: [PHP] unexpected T_STRING error

2002-09-28 Thread Gary
I knew I shouldn't of been doing this on Saturday morning. I forgot something as simple as that. Maybe another jolt of caffeine is needed. Thanks Gary Matt wrote: > The quotes within the quotes. > Change to: > echo"<META NAME=\"keywords\" CONTENT=\" $keywor

[PHP] error suppresion

2002-09-29 Thread Gary
I have a form, the action is PHP_SELF. When the form is submitted it prints the info lower on the page. The problem, the errors for the empty fields are printed until the form is submitted. What would be the best way of suppressing these error? TIA Gary -- PHP General Mailing List (http

Re: [PHP] error suppresion

2002-09-29 Thread Gary
pressing these error? > > > The best way to suppress your errors is to fix them. :) > > Or you can work around it by using the error_reporting() function. > > ---John Holmes... > > They are not really errors they are reporting that the form fields are empty until the

Re: [PHP] error suppresion

2002-09-29 Thread Gary
Jean-Christian Imbeault wrote: > Gary wrote: > >> >> They are not really errors they are reporting that the form fields are >> empty until the form is submitted. >> Notice: Undefined index: > > > That means your code is not doing any checking of the in

[PHP] unexpected t varable

2002-10-04 Thread Gary
= $row[1]; $responce1 = $row[2]; $responce2 = $row[3]; $responce3 = $row[4]; } TIA Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] unexpected t varable

2002-10-04 Thread Gary
$row[2]; >> $responce2 = $row[3]; >> $responce3 = $row[4]; >> } > > > ---John Holmes... > > that fixed the unexpected t_variable but now it is Fatal error: Call to undefined function: fetchrows() list($id, $question

Re: [PHP] unexpected t varable

2002-10-04 Thread Gary
>>> >>> >>that fixed the unexpected t_variable but now it is Fatal error: Call >> >> >to > > >>undefined function: fetchrows() >> >>list($id, $question, $responce1, $responce2,$responce3) = $res- >> >> >>

Re: [PHP] unexpected t varable

2002-10-05 Thread Gary
Doesn't work, get unexpected { for if( $res->numRows() {. If I remove braces or rearrange them it fall apart piece by piece. Thanks for the try Gary Marek Kilimajer wrote: > what about > > if( $res->numRows() { >while( $row = $res->fetchRows() ){ >

Re: [PHP] unexpected t varable

2002-10-05 Thread Gary
$question = $row[1]; $responce1 = $row[2]; $responce2 = $row[3]; $responce3 = $row[4]; } }else{ echo"bla bla"; } ?> now I have to post again on a strange row problem. Thank Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Division by zero

2002-10-07 Thread Gary
*/ $perc_vote2 = round(($vote2/$total)*100,2); /* Division by zero*/ $perc_vote3 = round(($vote3/$total)*100,2); /* Division by zero*/ TIA Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Division by zero

2002-10-07 Thread Gary
Yes, I did that before I posted. I am beginning to wonder if vote1-3 are being retrieved from the database. Gary John W. Holmes wrote: > Sounds like $total is zero to me...do you think PHP is making up errors > for you? Have you checked the value of $total and the different $voteX >

[PHP] Re: Division by zero

2002-10-07 Thread Gary
c_vote2 Percent3 $perc_vote3""; } ?> Owen Prime wrote: > Make sure that vote1, vote2, and vote3 are not null. Maybe you need to use > the IFNULL(vote1, 0) function. > > Cheers, > > Owen. > > > > Gary wrote: > > >> I am trying t get the pe

[PHP] Pass vars in URL

2002-10-14 Thread Gary
id it show up in the url but does nothing. If i check if it is set, it is not. IT is supposed to pass the id number to mysql on the linked page. I there something I am missing some new way or do I need to turn on something in the ini? TIA gary -- PHP General Mailing List (http://www.php.net

Re: [PHP] Pass vars in URL

2002-10-14 Thread Gary
is showing up in the url edit. Gary Brad Bonkoski wrote: > How about a code snippet of how you are retrieving the variable? > -Brad > > Gary wrote: > > >>Hello, >> My host has upgraded to 4.2 but still uses the old ini setting. I am >>trying to rewrite my

[PHP] $_SESSION

2002-10-15 Thread Gary
($res); TIA Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] $_SESSION

2002-10-15 Thread Gary
ession variable. > Thanks Rasmus and John, The sessions are being set in the browser but when checking for them on each page I am sent to the error page. I notice that when I upgraded to 4.2.3 the sessions are no longer stored in the tmp folder. I check the ini and the folder and pat

[PHP] defining a variable

2002-10-27 Thread Gary
Hi All, I am have trouble getting $address to print the URL that is in the db. %s is printing the url with the word address instead of the real address. The code is below. $sql ="SELECT * FROM links ORDER BY owner"; $sql_result = mysql_query($sql, $conn) or die ("couldn't Connect

Re: [PHP] defining a variable

2002-10-27 Thread Gary
Matt wrote: - Original Message - From: "Gary" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, October 27, 2002 2:00 PM Subject: [PHP] defining a variable Don't just try to change 'address' to $row['address'] abve, because you

[PHP] Weird Apache/php/windows problem

2003-10-20 Thread Gary
p TIA Gary The Nemesis Project http://nemesis1.f2o.org One Stop CSS -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Pear

2003-11-11 Thread Gary
I have recently up graded to 4.3.4 and now my links to pear have quite working. I have tried replace pear with go-pear and it is not working. What am I doing wrong? Old ini_set('include_path', 'C:/php/pear/'); require_once 'PEAR.php'; require_once 'DB.php

Re: [PHP] Terrible Hosting Experience

2001-02-21 Thread Gary
for 30 minutes or more. The straw that broke the camels back, they change their email system and didn't notify our clients. In the end it took our clients lawyer to completely break off with them. they kept bill and writing threating letters for months. Gary -- PHP General Mailing List (

[PHP] prompts

2001-03-14 Thread Gary
Is there anyway in PHP to prompt the user for input like JavaScript's prompt("Hello, what is your name?") Thanks, Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To c

[PHP] Passing JavaScript variables

2001-03-15 Thread Gary
Is there a way to pass a JavaScript variable to a PHP function? Thanks, Gary -- 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: [EMAIL PROTECTED]

[PHP] dynamically change a variable name

2001-03-18 Thread Gary
Is there a way to dynamically change a variable name? For example: I want to change the variable name $DWG to $DWG1 $DWG2 $DWG3 with a for loop. Is there a way to do this? Thanks, Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: [PHP] dynamically change a variable name

2001-03-19 Thread Gary
Thanks! "Mark Maggelet" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... On Sun, 18 Mar 2001 20:36:15 -0500, Gary ([EMAIL PROTECTED]) wrote: >Is there a way to dynamically change a variable name? For example: >I want to change th

[PHP] line break

2001-04-26 Thread Gary
Hi all, I know how to get a line break in text. Is there a way to get a line break between the user agent string below? I would line to print in a column instead of a long row. TIA Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For

[PHP] line break part2

2001-04-27 Thread Gary
Thanks for everyone's help on the original question. Now that I have gotten the line breaks in a file, How do I get the file out with the breaks? Also, does anyone know of a good tutorial on file formatting. TIA Gary -- PHP General Mailing List (http://www.php.net/) To unsubscri

[PHP] date calculation

2001-05-04 Thread Gary
Is there a way to do calculations with dates? Preferably ignoring weekends. Thanks, Gary -- 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: [EMAIL PROTECTED]

[PHP] HTTP Auth

2001-05-08 Thread gary
Im having a problem with Authentication uisng $PHP_AUTH_USER and $PHP_AUTH_PASSWORD works fine connecting via netscape but automatically set to false when using IE 5. Apache server , PHP installed as a module on a freebie server. Code below: '; echo 'Please go to Registration page to Get a log

Re: [PHP] HTTP Auth

2001-05-09 Thread gary
> ); > header( 'HTTP/1.0 401 Unauthorized' ); > echo 'Authorization Required.'; > exit; > > } else { > > ***your stuff goes here when authenticated > > } > ?> > > works excellent on any browser, apache server with PH

[PHP] matching user to tables

2002-01-17 Thread Gary
to a matching user. Does anyone know of a tutorial or decent document on how to go about doing this. TIA Gary -- 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

[PHP] Re: PHP and mySQL

2002-01-17 Thread Gary
that is nix command. On window you need to start MySQL one of two ways. http://www.mysql.com/doc/W/i/Windows.html HTH Gary Morten Nielsen wrote: > Hi, > > I try to use mySQL through PHP, but I can't get it to work. > Both PHP and mySQL is installed on my computer (win2k). Th

[PHP] Re: limit 0,30

2002-01-31 Thread Gary
Jtjohnston wrote: > I want to do something like this on a page: > > Pages: 1 2 3 [Next>>] > > How can I code SELECT * FROM `bookmarks` LIMIT 0, 30 ? > > Thanks? > > John > > This should be of some help. http://phpbuilder.com/columns/rod20001214

[PHP] Convert 24hr to 12hr

2002-02-05 Thread Gary
Hello All, Can someone please RTFM me so I can convert MySQL 24 hour time to 12 hour time. TIA gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Win32 PHP + PostgreSQL support

2002-02-07 Thread Gary
Doesn't php for windows come with pgsql already? extension=php_pgsql.dll Gary Todor Stoyanov wrote: > Any ideas how to get PHP for win32 with PostgreSql support? > > Cheers > > Todor > > > -- PHP General Mailing List (http://www.php.net/) To unsubscri

[PHP] Re: DreamWeaver/PHP ability?

2002-02-07 Thread Gary
There is no PHP support in Dreamweaver UltraDev. Gary Luke Crouch wrote: > I know Dreamweaver UltraDev has nice site management features for using a > JSP/SQL type serverdoes it have similar capabilities with PHP/MySQL? > Does anyone know? > > -L > > > --

Re: [PHP] Re: DreamWeaver/PHP ability?

2002-02-07 Thread Gary
works ust fine. Gary Edward R. Bailey wrote: > >-BEGIN PGP SIGNED MESSAGE- >Hash: SHA1 > >Actually Ultradev does support PHP if you buy a php application >server extension. A company in Romania (The name escapes me) makes >the extension and I have heard it works ver

[PHP] my math stinks

2002-02-10 Thread Gary
$pa > $pb or $pb > $pa then subtract smallest from the largest and add $ca and then add $ps TIA Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: IE vertical scrollbars changing color

2002-02-12 Thread Gary
do this?? > > Thanks!! > > body{ scrollbar-base-color:black; scrollbar-arrow-color:black; scrollbar-highlight-color:#FF8000; scrollbar-3dlight-color:silver; scrollbar-shadow-color:silver; scrollbar-darkshadow-color:black; scrollbar-face-color:#FF8000; } HTH Gary -- PHP General Ma

Re: [PHP] Cheap, PHP, mySQL hosting!

2002-02-13 Thread Gary
with Yahoo! Greetings! > http://greetings.yahoo.com > That depends on what you are calling cheap. http://site-works.com/hosting_plans_comparison_chart.html HTH Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: mail headers

2002-02-13 Thread Gary
ff to the mail script mailfriend.php or what ever you name it. collect all the variable in the mail() script. " name="url"> Friends Email: Your Name: Your Email: HTH Gary Renato Salvatore Moya L. wrote: > ah! ,i

Re: [PHP] Troubles With Mail Function

2002-02-13 Thread Gary
smtp.minspring.com is the address for out going mail. Gary Dr. Shim wrote: > Alright, I will show you my entire mail code here. BTW: I cannot mail using > mail() function > > [mail function] > ; For Win32 only. > SMTP = mindspring.com > > ; For Win32 only. > sendm

[PHP] PEAR DB class

2002-02-14 Thread Gary
Hi all, Before I get started and have to figure out a problem. Is it legal in PEAR DB to connect like this $dbh = DB::connect("mysql://$user:$pass@$host/$dname); where user, password, host and database names are coming from an include? TIA Gary -- PHP General Mailing List

[PHP] Undefined class name

2002-02-15 Thread Gary
); where did I screw up. TIA Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: s.osborne, are you out there?

2002-02-15 Thread Gary
nope, I am getting it too. Gary Erik Price wrote: > > > Am I the only one who gets the following message each time I post to > php-general? Is there a moderator who could remove this subscriber? > > Begin forwarded message: > >> From: "Postmaster"

[PHP] Re: form opens a php window.

2002-02-17 Thread Gary
g like a cookie or database to collect and pass on the information to the page that resides in the window. Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] get_browser();

2002-02-18 Thread Gary
om/ > > > Is that going to catch the Mozilla spoofers, like webtv and opera? Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] get_browser();

2002-02-19 Thread Gary
o see if they is >to see if they can preform advanced scripting by using. if (document.getElementById >&& document.createElement). If your checking for only CSSS you can skip >document.createElement it is only for Opera 5. > Gary > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Homesite

2002-02-19 Thread Gary
uilder for php that works like the one that come with Homesite. I don't use it but it used to be on the Allire site. Since Macromedia owns hs now, No telling where to find it. gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Moto

2002-02-19 Thread Gary
Ben Curtis wrote: > I noticed this server-side scripting language which has an interesting > twist: your code can be complied and loaded as an apache DSO. Would > this be feasible with PHP? > > http://www.php.net/manual/en/install.apache.php#AEN855 -- PHP General Mailing List (http://www.

Re: [PHP] Re: Moto

2002-02-19 Thread Gary
I would guess that the cloest thing would be the Zend Encoder. Someone on the list may working on something else. http://zend.com/store/products/encoder-faq.php#3 Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Weather Scripts

2002-02-19 Thread Gary
to a raw data text file for this > information as well. > > Regards, > > Shannon This is probably what you have been looking for. Look at the home page for the METAR links if you need them. http://sourceforge.net/projects/phpweather/ HTH Gary -- PHP General Mailing List (http://ww

[PHP] Controlling Word Files (FDA Concern)

2002-05-03 Thread Gary
Does anyone know of how to put a Word file on a web page without the user being able to save it to their hard drive? And also another issue of making it so they can't print it. Thanks, Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: css sheets in designs

2002-05-13 Thread Gary
sheets works the same as any other language that you can link to your document. HTH gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Client user info

2002-05-24 Thread Gary
Is there a way to get the user information? I know there must be a constant variable, but I can't seem to find it. Thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Client user info

2002-05-24 Thread Gary
Thanks everyone! "Gary" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Is there a way to get the user information? I know there must be a constant > variable, but I can't seem to find it. > > Thanks > > -- PH

[PHP] Re: Hyperlinks vs Buttons

2002-02-20 Thread Gary
Steven Walker wrote: > Is there a way to regular hyperlinked text to submit a form? > > For example, rather than having a button that says [Login], I just want > underlined text: Login > > Steven J. Walker > Walker Effects > www.walkereffects.com > [EMAIL PRO

[PHP] Re: Which Portal System?

2002-02-20 Thread Gary
> My PHP NUke: > mpn188_final.zip > http://www.myphpnuke.com/ > > Thanks in advance, > Curt > > > > One more for you to check out. http://phpwebsite.appstate.edu/ Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: sometimes browser just recieves half the page

2002-02-22 Thread Gary
e since Im not a member of this maillinglist. > > The javascript showing up in the left frame is not showing the same as your link to it. The page showing up in the frame is broken. The javascript tags are closed before the script Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: sometimes browser just recieves half the page

2002-02-25 Thread Gary
[EMAIL PROTECTED] wrote: >Gary wrote: > >> >>John Ericson wrote: >> >>>Im programming a page where I have a java-tree-menu that gets generated >>>from a db. The code works perfectly but sometimes when a browser reads the >>>page I just get

Re: [PHP] Converting arrays

2002-02-25 Thread Gary
Simon Willison wrote: > Gary wrote: > >> Hi All, >> I am not too bad at building arrays in php but I need to convert a >> javascript form into php. How wuld I conver the small snippit here? >> >> var d = new Array(), l = new Array(); >> l[0] = new A

Re: [PHP] Converting arrays

2002-02-26 Thread Gary
I am using date(B); http://www.php.net/manual/en/function.date.php that break 24 hours into 1000 beats I will still have to use timezone but break them into beats. Gary Stewart G. wrote: >Why dont you just use timezones? > >=S. > >On Mon, 25 Feb 2002, Gary wrote: > >

[PHP] Re: is PHP4.0.3 on a commercial webserver Justifiable ?

2002-02-26 Thread Gary
They will up grade everything running on the server Apache, PHP, Perl, Python, SQL databases, and upgrading to SSH, ETC. That is a major undertaking when you have 20+ servers. Ask you host if they have any new servers and what version is running on them. Gary -- PHP General Mailing List (http

[PHP] Re: Unable to display images on browser

2002-02-26 Thread Gary
tent-type: $fileType"); > Header("Content-type: image/gif"); > echo $fileContent; > } > else > { > echo "Record does not exist"; > } // else > ?> > > Are you storing the complete html tag? The browser dosen't know what or where to display without the image tag. Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Changed localhost?

2002-02-27 Thread Gary
problem? > > Thanks! > > Anthony Rodriguez > ([EMAIL PROTECTED]) > > Since you are using a cable modem, You are using a firwall too,Right? Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] How are they doing it?

2002-03-06 Thread Gary
Hello Everyone. I saw a Perl script today that the owners of the site can send an email and pages would update automatically update. How are they accomplishing this? Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: CSS Group

2002-03-10 Thread Gary
Jtjohnston wrote: > Can anyone recommend a good CSS news group? > > > http://two.pairlist.net/mailman/listinfo/css-discuss Very hard core CSS List HTH Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Netscape Vs. IE

2002-03-11 Thread Gary
t; trying to use background-image:file.gif, but it doesn't seem to work. > > Thanks, > Vlad HTH Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: HTML Question

2002-03-31 Thread Gary
http://foo.com"; name="MyFrame" id="MyFrame" width="400" height="300" marginwidth="0" marginheight="0" scrolling="no" frameborder="0"> You need to give a height. NN4 does not support iframe Gary Jtjohnsto

[PHP] return

2002-03-31 Thread Gary
Can someone explain to me the reason for using return. function _getValue($foo) { $foo = $_POST; return ${$foo}; } TIA Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Phone number validation

2002-04-06 Thread Gary
ters that people use? TIA Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Phone number validation

2002-04-07 Thread Gary
phone number. When I sat down and thought about it there are too many problems. These problems range from country codes, city codes , and area codes all changing daily to business phones. Your looking at #*. + ( )- and probably many more I haven't thought of. Looks like I will only ch

[PHP] strip HTML

2001-10-20 Thread Gary
Hello All, How would I strip all HTML before the info in inserted to MySQL? The info is sent with a form. We Have one person that insist on using HTML. TIA Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

[PHP] Re: strip HTML

2001-10-20 Thread Gary
Thanks James: I had figured that part out (should of said so). What is happening is a form is passing the stuff to another page that does the DB UPDATE. The form action is . Where I am lost is where to put the strip_tags() like action=strip_tages("update.php"); Gary Yz J

[PHP] stop time out

2001-10-23 Thread Gary
On sending a large number of newsletters out, how would you stop php from timing out if you do not have access to the .ini file? TIA Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact

Re: [PHP] stop time out

2001-10-23 Thread Gary
OK, is there a limit on set_time_limit? The host of the site has a limit of 30 mails a second to stop spamming. so I need set_time_out of 60 seconds, that will give me 90 seconds to send all the mail. Gary Tim Zickus wrote: > On Tue, 2001-10-23 at 15:34, Gary wrote: > >>On sen

[PHP] htpasswd

2001-10-25 Thread Gary
Can php write to a htpasswd file? If it can will someone point me in the right direction. TIA Gary -- 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: [EMAIL

[PHP] SSI

2001-10-28 Thread Gary
How do you get a SSI to work on a php page? TIA Gary -- 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: [EMAIL PROTECTED]

Re: [PHP] SSI

2001-10-28 Thread Gary
Yes I do, it is to run a pre-exiting program. I figured it out. I was uing double quotes in the ssi and excaping them when echoing. I should of been using single quotes. Thanks Gary Christian Dechery wrote: > At 19:04 28/10/01 -0500, Gary wrote: > >> How do you get a SSI to w

[PHP] virtual

2001-10-29 Thread Gary
What would cause a fatal error using virtual(/cgi-bin/folder/program.pl); ? TIA Gary -- 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: [EMAIL PROTECTED]

Re: [PHP] virtual

2001-10-30 Thread Gary
Tried that, same result. looks like I am going to have to strip off the php from that page and change it to shtml Gary Nikola karoviƦ wrote: > you could try using require(/cgi-bin/folder/program.pl); instead > - > volim popit, volim zagalamit > - Orig

[PHP] use PHP as a module in Apache on win9x

2001-11-19 Thread Gary
Has anyone been able to run PHP 4.06 as a module on windows 98? Every time I have tried, using the install directions I get an error on starting Apache.It tells me it take two arguments, a module name and shared object file what am I doing wrong? Gary -- PHP General Mailing List (http

[PHP] & PHP

2001-04-09 Thread Gary
Hi All, When using the dtd below on a page that has a form with php. I get a parser error for am I going to have to go back to a HTML 4.01 dtd or can I do something like escape the ? ? http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> http://www.w3.org/1999/xhtml"> TI

Re: [PHP] & PHP

2001-04-09 Thread Gary
Brian Clark wrote: > Hi Gary, > > @ 4:38:17 PM on 4/9/2001, Gary wrote: > > >> When using the dtd below on a page that has a form with php. I get a >> parser error for am I going to have to go back >> to a HTML 4.01 dtd or can I do something like escape the

[PHP] flat file from ?

2001-07-27 Thread Gary
Hello All, I am still kinda new to php. I know how to write/create a flat file but how would I write to a flat file from a form object ? TIA Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

[PHP] number of uploads

2001-07-27 Thread Gary
I can do basic file uploads. How do you let the user choose the number of uploads with drop down list? Gary -- 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

  1   2   3   4   5   6   >