Jump to content

DigitalDrew

New Members
  • Posts

    6
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

DigitalDrew's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. (I graduated with a BA in Studio Art and minored in Art History.) Thank you both for your input. I should have added more content before I put it up for critique. I understand why you thought it was confusing, there isn't any content to let the visitor know what they are looking at. I understand that I basically need to stop looking at the web as my 'canvasā€˜ and look at it as a 'space'. Design not Art... Thanks again... I will be sure to resubmit the site for a critique, when I redesign it. AMN (AndrewMichaelNathan)
  2. LOL...ok here is the site: www.andrewmichaelnathan.com Thanks!
  3. I just graduated and I am in need of a critique. I put everything together, HTML, CSS, and PHP but I can not claim the JavaScript programming of the: JQuery_Kwicks -http://www.jeremymartin.name/projects.php?project=kwicks or Slimbox2 - http://www.digitalia.be/software/slimbox2#download The content is slim, I'm currently working on that as we speak. Please voice anything that you think of. Advise me to change and advise me to keep. I really appreciate your help... www.andrewmichaelnathan.com
  4. I have to say that I just started to implement the code, and it wasn't working, so I went back to the post and the answer to my question was in your second reply. So, I have to thank you again YOU ARE GREAT! AMN
  5. YES! Chris, thank you so much!! I did not know that an ampersand was needed, or the back-slash, I guess I over looked that last night at 1,2,3am while looking it up on W3schools. I've never added 2 $GET functions in one web page. Thanks again Chris ! AMN
  6. Hey guysNgals, I'm a newber to more advanced PHP (well anything other than the $GET and include function ) Just graduated from college (May 09) Trying to get my online portfolio up and I'm stuck I'm in total need of assistance, I'm in mode... (I love these emoticons, if you haven't already noticed ) Ok onward... I'm using this for my navbar to dynamically retrieve the guts of my pages, works fine, like always. <?php if($_GET['link']) { include ('pageheading/' . $_GET['link'] . '.php'); } else { include ('pageheading/home.php'); } ?> <div id="top_navbar"> <ul id="menu"> <li><a href="/" class="home" >home</a></li> <li><a href="?link=about" class="about" >about</a></li> <li><a href="?link=web" class="web">web</a></li> <li><a href="?link=photo" class="photo">photo</a></li> <li><a href="?link=video" class="video">video</a></li> <li><a href="?link=contact" class="contact">contact</a></li> </ul> </div> Now I want to use this function: <?php if($_GET['page']) { include ('flickr/' . $_GET['page'] . '.php'); } else { include ('flickr/FSU.php'); } ?> on my "photo" page to dynamically retrieve my flickr photosets with: <ul> <li><a href="/?link=photo?page=FSU" title="Florida State University, Around the Campus">Florida State University</a></li> <li><a href="?link=photo&?page=Miami" title="South Miami">South Miami</a></li> <li><a href="?link=muscles" title="muscles">Muscles</a></li> <li><a href="?page=CG_Images" title="CG">CG Images</a></li> <li><a href="?page=facial_textures" title="Photoshop Textures">Facial Textures</a></li> </ul> I have saved them as embedded flash [objects] inside separate .php files in a folder called flickr, which is inside the 'pageheading'. Here are paths to two separate embedded flash objects: http://www.andrewmichaelnathan.com/pageheading/flickr/FSU.php http://www.andrewmichaelnathan.com/pageheading/flickr/Miami.php As soon as I click on a link ON my 'photo page' to retrieve one of the embedded flash objects, it says: Warning :'( include(pageheading/photo/?page=Miami.php) [function.include]: failed to open stream: No such file or directory in /home/content/d/i/g/digitaldrew/html/index.php on line 51 Warning :'( include() [function.include]: Failed opening 'pageheading/photo/?page=Miami.php' for inclusion (include_path='.:/usr/local/php5/lib/php') in /home/content/d/i/g/digitaldrew/html/index.php on line 51 I tried everything , I've never been able to use the $GET function on the home page, and another $GET function on a page that was retrieved by the first $GET function, to dynamically GET other data. View source code @ http://www.andrewmichaelnathan.com/?link=photo If you can help me realize what I'm doing wrong, it would be much appreciated! Thank You! AMN
×
×
  • 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.