each of the urls displays a number, but when i echo out $z it displays 0 instead of the large group of all the numbers combined…
what am i doing wrong?
<?php
$a = "<script type="text/javascript" src="http://modmyi.com/cstats/index.php?package=Battery+Theme&output=text"></script>";
$b = "<script type="text/javascript" src="http://modmyi.com/cstats/index.php?package=Connection+Theme&output=text"></script>";
$c = "<script type="text/javascript" src="http://modmyi.com/cstats/index.php?package=Icon+Theme&output=text"></script>";
$d = "<script type="text/javascript" src="http://modmyi.com/cstats/index.php?package=Percent+Theme&output=text"></script>";
$e = "<script type="text/javascript" src="http://modmyi.com/cstats/index.php?package=StatusNotifier+Theme&output=text"></script>";
$f = "<script type="text/javascript" src="http://modmyi.com/cstats/index.php?package=c-note&output=text"></script>";
$g = "<script type="text/javascript" src="http://modmyi.com/cstats/index.php?package=iAcces+c-note+KB&output=text"></script>";
$h = "<script type="text/javascript" src="http://modmyi.com/cstats/index.php?package=c-note+Lite&output=text"></script>";
$z = $a+$b+$c+$d+$e+$f+$g+$h;
echo $z;
?>
Similar:
- Adding percentage in python – xlwt / pyexcelerator Hello, just a quick question, how to add percent sign to numbers without modifying number. I have tried format percent with myStyleFont.num_format_str = ’0.00%’ but...
- display js inside php while loop I found the count down script in http://www.dynamicdrive.com/dynamicindex6/dhtmlcount.htm It works fine if i just define the date but when I try to pass the date...
- Modal Confirmation trying to use for form validation Good morning gang, I'm attempting to use Modal Confirmation from http://jqueryui.com/demos/dialog/#modal-confirmation I have the example working and code looks like so: <!DOCTYPE html> <html lang="en">...
- how to close colorbox within iframe? i have a page manageGroup.php, where user can also add member to group. I used colorbox to show the addGroupMember.php. Now i need to close...
- Adding a ‘remove’ option to information sent from child to parent window (so close?) index.php: Code: <?php include '../connect.php'; ?> <?php if($_POST['Submit']){ $id=$_GET['id']; $property_id=$_POST['property_id']; mysql_query("update leases set property_id='$property_id' WHERE id='$id'"); header("location:view.php?id=$id"); exit; } $id=$_GET['id']; $result=mysql_query("select * from leases where...