simzam
12-24-2010, 10:45 AM
hello
I want to get loop numbers and hyperlinks from other included file function
how to call function that gives me all 1-10 numbers and hyperlinks thanks
include('linksandid.php');
idlink(); here i want get all numbers and hyperlinks separately
?>
linksandid.php:
<?php
function idlink() {
for($i =1; $i <= 10; $i ++) {
$links = "<a href=\"http://localhost\123.php?page=$i\"> $i</a> ";
}
?>
I want to get loop numbers and hyperlinks from other included file function
how to call function that gives me all 1-10 numbers and hyperlinks thanks
include('linksandid.php');
idlink(); here i want get all numbers and hyperlinks separately
?>
linksandid.php:
<?php
function idlink() {
for($i =1; $i <= 10; $i ++) {
$links = "<a href=\"http://localhost\123.php?page=$i\"> $i</a> ";
}
?>