Plzz Help Me

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Plzz Help Me

    i want to add updates.php in top of Select Categories i tried with
    PHP Code:
    <?php include('updates.php'); ?>
    but it showing error


    PHP Code:
    $list listFiles($listof);
    //echo '<h2>'.str_replace('/','  ',$listof).'</h2>';
    $category explode('/',$listof);
    echo (empty(
    $_REQUEST['dir']) || $_REQUEST['dir']=='menu'?'

    <div class="cateogry"><h2>Select Categories</h2></div><div class="catRow"><a href="/mp3">Full Mp3 Songs</a></div>'
    :'<div class="cateogry"><h2>'.ucwords($category[count($category)-1])).' </h2></div>'
    Last edited by arnage; 28.07.12, 11:15.

    #2
    What is the error?

    Comment


      #3
      if you post error message we can help you out, or if you read it carefully it will tell you where the errror is...
      C3 Themes: http://c3themes.wen.ru/index.html
      Find Files: http://mystarter.tk/?goto=X-search

      Comment


        #4
        re

        Originally posted by Smwap View Post
        i want to add updates.php in top of Select Categories i tried with
        PHP Code:
        <?php include('updates.php'); ?>
        but it showing error


        PHP Code:
        $list listFiles($listof);
        //echo '<h2>'.str_replace('/','  ',$listof).'</h2>';
        $category explode('/',$listof);
        echo (empty(
        $_REQUEST['dir']) || $_REQUEST['dir']=='menu'?'

        <div class="cateogry"><h2>Select Categories</h2></div><div class="catRow"><a href="/mp3">Full Mp3 Songs</a></div>'
        :'<div class="cateogry"><h2>'.ucwords($category[count($category)-1])).' </h2></div>'
        does the page updates.php have
        PHP Code:

        <?php
        $list 
        listFiles($listof);
        //echo '<h2>'.str_replace('/','  ',$listof).'</h2>';
        $category explode('/',$listof);
        echo (empty(
        $_REQUEST['dir']) || $_REQUEST['dir']=='menu'?'

        <div class=\"cateogry\"><h2>Select Categories</h2></div>
        <div class=\"catRow\"><a href=\"/mp3\">Full Mp3 Songs</a></div>'
        :'<div class=\"cateogry\"><h2>'.ucwords($category[count($category)-1])).' </h2></div>'
        ?>
        also when using php html output changes ie: dont forget to use \ like this echo "<div class=\"new\"></div>";
        Last edited by ozziemale31; 31.07.12, 03:05.









        Dont Ask Me Dumb Questions.Or you'l get a Dumb Answer..
        Want A Profesional Logo or Theme For Your wap site Pm Me.If I Have The Time Ill Make It For Free

        Comment

        Working...
        X