Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 45
Search took 0.13 seconds.
Search: Posts Made By: trazix
Forum: PHP 11-18-2012, 06:42 PM
Replies: 10
Views: 545
Posted By trazix
That new loop gives same result no closing </li>...

That new loop gives same result no closing </li> tags


This is all i have that is to do with main_menu

$main_menu[0] = array('name' => 'HOME PAGE', 'link' => 'index.php');
$main_menu[1] =...
Forum: PHP 11-18-2012, 06:18 PM
Replies: 10
Views: 545
Posted By trazix
Thanks Poyzn. I'v been working on my own loop...

Thanks Poyzn.
I'v been working on my own loop since and I'm getting a similar result to your's.

echo "\n\n\n<ul id=\"nav_menu\"><!-- Unordered List Start Tag -->\n";

foreach ($main_menu as...
Forum: PHP 11-18-2012, 05:04 PM
Replies: 10
Views: 545
Posted By trazix
Trying this loop now. I think I am on the right...

Trying this loop now. I think I am on the right track but just cant get it to work.

echo "<ul id=\"nav_menu\">";

foreach ($main_menu as $key => $keyValue)
{
echo "\n<li...
Forum: PHP 11-18-2012, 03:47 PM
Replies: 10
Views: 545
Posted By trazix
Still trying to solve this with not much luck ,my...

Still trying to solve this with not much luck ,my new array looks like this which i think is a valid type of array.


//MAIN MENU ARRAY
$main_menu[0] = array('name' => 'HOME PAGE', 'link' =>...
Forum: PHP 11-16-2012, 02:16 PM
Replies: 10
Views: 545
Posted By trazix
Thanks for the reply firepages, however no joy....

Thanks for the reply firepages, however no joy. I'v made a boo boo in the Array I posted. It should have looked like this,


//MENU ARRAY
$main_menu[0] = array('name' => 'HOME PAGE', 'link' =>...
Forum: PHP 11-11-2012, 06:18 PM
Replies: 10
Views: 545
Posted By trazix
Not Looping through full array.

First is this Array code valid, I think it's probably not. What I am trying to do is loop through the array to build a Navigation Menu. The buildMenu function will loop the main_menu array but not...
Forum: PHP 11-11-2012, 01:21 PM
Replies: 3
Views: 285
Posted By trazix
I think i figured it out . ...

I think i figured it out .



if(isset($_GET['id']) && !empty( $_GET['id'] ) ) {

$url_parameter_id1 = $_REQUEST['id']; //REQUEST's parameter's from URL e.g id=?

PHP CODE HERE
Forum: PHP 11-11-2012, 01:03 PM
Replies: 3
Views: 285
Posted By trazix
Can't get URL Parameter to work.

Using the link index.php?id=1 will work with the code bellow


if(isset($_GET['id']) && $_GET['id'] === '1') {

$url_parameter_id1 = $_REQUEST['id']; //REQUEST's parameter's from URL e.g id=?
...
Forum: PHP 10-23-2011, 06:10 PM
Replies: 4
Views: 1,458
Posted By trazix
Working now, Thanks.

Working now, Thanks.
Forum: PHP 10-23-2011, 02:25 PM
Replies: 4
Views: 1,458
Posted By trazix
Undefined index: id When i load page

When i load this page I get 5 error's "Undefined index: id ............... on line X" they are the if and else if lines, can anyone spot any mistakes here as I am a beginner at php. The links seem to...
Forum: PHP 10-20-2011, 02:42 PM
Replies: 2
Views: 425
Posted By trazix
Thanks mlseim that works perfectly.

Thanks mlseim that works perfectly.
Forum: PHP 10-20-2011, 02:12 PM
Replies: 2
Views: 425
Posted By trazix
need to create a directory with other monthly directorys inside

I am trying to make a directory structure that will be named after Year's (2011, 2012, 2013, etc) and in each directory the months in this format January, February, March, e.t.c and not as 1, 2, 3,...
Forum: HTML & CSS 11-06-2010, 05:32 PM
Replies: 8
Views: 779
Posted By trazix
abduraooft that worked a treat, Thanks

abduraooft that worked a treat, Thanks
Forum: HTML & CSS 11-06-2010, 04:16 PM
Replies: 8
Views: 779
Posted By trazix
It's almost there but the background is not...

It's almost there but the background is not surounding the sub menu items.

http://yabadabadoo.blackapplehost.com/testing-pages/Example2.htm

I can change the height: auto to height: 150px; and...
Forum: HTML & CSS 11-06-2010, 01:15 PM
Replies: 8
Views: 779
Posted By trazix
This is what i am hoping to acheive. here is...

This is what i am hoping to acheive.

here is a link to a picture

http://yabadabadoo.blackapplehost.com/testing-pages/x.jpg
Forum: HTML & CSS 11-05-2010, 09:49 PM
Replies: 8
Views: 779
Posted By trazix
Thanks oesxyl that sorted some issues, the hidden...

Thanks oesxyl that sorted some issues, the hidden part that appears when the link is clicked on starts behind the Main menu I would like it to start below it what css would i need to achive this....
Forum: HTML & CSS 11-05-2010, 07:34 PM
Replies: 8
Views: 779
Posted By trazix
Content not showing where it should be

It's probably a simple fix but i've try everything within my basic ability to get my hidden div to display properly, basicaly the content is showing outside of a yellow bordered area where it should...
Forum: PHP 09-27-2009, 08:20 PM
Replies: 6
Views: 688
Posted By trazix
kbluhm Your code is 100% top class and outputs...

kbluhm Your code is 100% top class and outputs exactly what i asked for but I am a total novice at programing and would like to integrate your code with mine but I've trying and getting nowhere with...
Forum: PHP 09-27-2009, 07:49 PM
Replies: 6
Views: 688
Posted By trazix
kbluhm your code works but as I am not competent...

kbluhm your code works but as I am not competent enough at this php programming I cant get yours to work as I want it, I dont want to write the details to screen just to have an array created...
Forum: PHP 09-20-2009, 10:42 PM
Replies: 6
Views: 688
Posted By trazix
599 could be any number (it comes from the width...

599 could be any number (it comes from the width of an image file) but what ever the number is it will be divided by 100 so the array should be like for 345 be (100, 100, 100, 45)

Basicaly the...
Forum: PHP 09-20-2009, 10:17 PM
Replies: 6
Views: 688
Posted By trazix
Populating an array problem

I need help to create/populate an array with numbers and I cant find a solution,

599 divided by 100 = 5.99

I would like the array to contain the ellements bellow

array("100", "100", "100"...
Forum: PHP 09-05-2009, 07:39 PM
Replies: 2
Views: 2,839
Posted By trazix
Question Can Php split an image

Can Php get an image file and split it into a number of segments (e.g 4x4) and then display each segments as a seperate image on screen.
Forum: JavaScript programming 08-23-2009, 08:09 PM
Replies: 8
Views: 683
Posted By trazix
Thanks Philip

Thanks Philip
Forum: JavaScript programming 08-23-2009, 05:00 PM
Replies: 8
Views: 683
Posted By trazix
That's excellent work jmrker & Philip M . Sorry...

That's excellent work jmrker & Philip M .
Sorry about the thread title.

Just discovered a flaw in Philip M script , when I change time to 1 second the count goes very slowly instead it should...
Forum: JavaScript programming 08-23-2009, 03:37 PM
Replies: 8
Views: 683
Posted By trazix
That good work coothead, but I'd like to see it...

That good work coothead, but I'd like to see it increment the count by 1 each time, so you'd just see it flash quickly through all the numbers
Showing results 1 to 25 of 45

 
Forum Jump

All times are GMT +1. The time now is 11:08 PM.