Search found 7 matches

by daisysf
Tue Sep 02, 2003 7:20 am
Forum: Javascript
Topic: is it possible to hide the paths on the address bar ?
Replies: 16
Views: 6741

macewan wrote:why not just add this to your .htaccess?
I don't has access to my ISP's config files and my ISP don't use .htaccess even though its Apache.

I just want to add code to my page(s) to put just my domain ($SERVER_NAME or $HTTP_HOST) in their browser's address-bar.
by daisysf
Thu Aug 28, 2003 6:10 am
Forum: Javascript
Topic: is it possible to hide the paths on the address bar ?
Replies: 16
Views: 6741

Yes, but no

Thats interesting, but I'd rather have the address bar with just the domain only for each page accessed. I thought this might work, but it does not; <meta name="Identifier-URL" content="http://www.Domain.Com"> I'm thinking maybe something in Header() or maybe; $URL = $HTTP_HOST o...
by daisysf
Thu Aug 28, 2003 3:44 am
Forum: Javascript
Topic: is it possible to hide the paths on the address bar ?
Replies: 16
Views: 6741

Any Other Ways?

Is there any other ways of doing this, I'm thinking in the lines of META, Header() or HTTP, without javascript and frames?
by daisysf
Thu Apr 10, 2003 12:55 am
Forum: PHP - Code
Topic: Doing 2 things w/ 1 form?
Replies: 7
Views: 1980

Neither of the last 2 scripts Executes/Produces a logfile".txt", They only pop-up PayPal window and submits to PayPal. I even tried switching the action and location var's that made it worse. I got a pop-up flash and nothing was submited or logged. I'm loosing hope on this project.
by daisysf
Tue Apr 08, 2003 11:17 pm
Forum: PHP - Code
Topic: Doing 2 things w/ 1 form?
Replies: 7
Views: 1980

This code don't look right: Check if(isset($_POST['submitname'])); If true, log it if false, don't log it. or where you trying to say?: <?php if (isset($_POST['submit'])) { $logfile = "logfile.txt"; $logthis = $row->item_num.$row->item_name." FOR $".$row->Price."+ $".$r...
by daisysf
Tue Apr 08, 2003 3:18 pm
Forum: PHP - Code
Topic: Doing 2 things w/ 1 form?
Replies: 7
Views: 1980

Simple 4 you, but Hard 4 me

bznutz, You got it, that's what I want, but HOW do I get it ? HERE IS THE CONFUSION: 1. Which "Code" do I start with (if isset or if submit)? 2. Must I change the "action=" in the paypal script to PHP_SELF? 3. If I must, how do I get it sent to the old paypal "action" a...
by daisysf
Tue Apr 08, 2003 4:13 am
Forum: PHP - Code
Topic: Doing 2 things w/ 1 form?
Replies: 7
Views: 1980

Doing 2 things w/ 1 form?

I'm trying to log when someone SUBMITs an order..... In other words; When someone Submits "Script #1", I'd like "Script #2" to be executed before "Script #1", is sent to "Paypal". I'm thinking it could be done using "Code #1" or "Code #2", ...