Jump to content

GLOBAL Variables?


a2bardeals

Recommended Posts

So I have hit a wall. I have two problems.

First,

I have two lists that are dependent on variables. a daily events list (daily.php) and a monthly events list (monthly.php) they both have variables to set which day or month to view.

If i am looking at monthly.php i can use html to pass variables just by
<a href="monthly.php?mo=jan">Jan</a>
or
manually typing in the URL

however when i try to set a default value for $mo in monthly.php
e.g. $mo = date('M') // to auto detect todays date
i cant change the variable via the URL or a link to view other months or days

Second,

I have a page called lists.php which includes the two files together
<? include 'daily/daily.php'; ?>
<br>
<? include 'monthly/monthly.php';?>

If i use links on both pages to pass variables
the URL comes out like

[a href=\"http://www.domain.com/mysql/monthly.php?mo=jan\" target=\"_blank\"]http://www.domain.com/mysql/monthly.php?mo=jan[/a]

and i get a File Not Found

i think i need to use Global variables but i have no idea how to set that up...

any help will be very sweet!
Link to comment
https://forums.phpfreaks.com/topic/11932-global-variables/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.