Jump to content

ee92

Member
  • Posts

    11
  • Joined

  • Last visited

Everything posted by ee92

  1. Hi, I've been searching everywhere but can't find a basic clean theme for phpBB that doesn't look like a forum. I remember seeing one somewhere but can't find it. TO get an idea of what I'm looking for, its something like what Jamie Oliver's forums are like: http://www.jamieoliver.com/forum/ Heavily customized so it doesn't look like a normal, generic forum anymore. Can you guys help me out? Thanks!
  2. My post is coming garbled on the forum homepage, so just testing to see If I can post
  3. Hi Guys, First off let me say I've googled/searched this site for the answer to my question and couldn't find exactly what I want. Basically, I'm building a website for a friend and one the things he wants is a table with 7 columns with column representing a different day (including the date). Under each column he has a list of times (You don't have to worry about that) So it'll be like this: Monday (6/1/2009) Tuesday (6/2/2009) Wednesday (6/3/2009) .... ... "Next Week" 5pm - 6pm 6pm - 8pm 9pm - 10pm 6pm - 8pm ... ... ... Now the thing is that the header part of the table has to scroll. Meaning that when a person clicks next week the dates change and display the next week. Only the dates would change. Also he'd like it if the first column was the current day of the week (For example instead of Monday as first today Friday would be first) This calendar will be part of a form, and the the time that the user clicks will be passed on. Now I've thought about this a while, but I can't really determine the best method to approach this problem. Any ideas? BTW, we're using Cake PHP and jQuery Thank You!
  4. Hi, I've googled and searched through pages and tutorials to avoid bothering you guys with another question. But I've found nothing for this case. Can you please help? I have this code: <?php $pass = $_GET['pass']; $query="SELECT ID, Name, Description, Location, ListPrice, Price, Image FROM proclist WHERE ID = '$pass'"; $status=mysql_query($query) or die( "Query Failed."); $nt=mysql_fetch_array($status); ?> <?php $location = explode(",", "$nt[Location]"); $price = explode (",", "$nt[Price]"); $listprice = explode (",", "$nt[ListPrice]"); $count_values = sizeof($location); $loop_count=0; while ($loop_count < $count_values) { ?> <?php echo '' . $location[$loop_count] . '';?> Our Price: <?php echo $price[$loop_count];?> List Price: <?php echo $listprice[$loop_count]; $loop_count++; } echo $location[0]; ?> < <?php $pass = $_GET['pass']; $location = explode(",", "$nt[Location]"); echo $location[$pass]; mysql_close($link); ?> Every thing works except at the end of the code. "echo $location[$pass];" works when $pass is equal 1 or 2 (displays the correct value) but NOT when $pass is equal to 0 (does not display anything). Any ideas? Thank you.
  5. Thanks Benjamin this was exactly what I was looking for. But when I run this code I get these errors and I can't seem to declare these values: Notice: Use of undefined constant ID - assumed 'ID' in C:\wamp\www\Med\selftest.php on line 185 Notice: Use of undefined constant Name - assumed 'Name' in C:\wamp\www\Med\selftest.php on line 185 Thank You!
  6. Hi, I know this topic seems generic but I've searched throughout google and these forums with no result. I have a MySQL database and what I want to do is create a list of the entries (only name field). I need each entry to be hyperlinked and all of them to link to one page. The link will pass the ID field of the entry the person has clicked. From there the second link will take that ID variable and look it up in the MySQL database and pull the rest of the data for that entry to automatically generate an info page. So far I have this code <?php $query="SELECT ID, Name, Location, Price FROM proclist"; $status=mysql_query($query) or die( "Query Failed."); ?> <?php while($nt=mysql_fetch_array($status)){ echo "$nt[Name] "; } ?> However, as is obvious the "pass=ID" only passes the characters ID. Can anyone help me with a solution for this? Thanks, Zayd
  7. Got it now! Thanks alot
  8. Also how would I position the image? Thanks Eric
  9. It's in the CSS file. I did try using it as a background image but I couldn't find a way to change the image when the pointer hovered over it - is that possible? That would be so much easier.
  10. I tried the absolute positioning of the image - didn't work . I tried adding the overflow but I'm not sure I got it correctly - can you show me? Thanks
  11. Hi, I got an open source accordion text box script from the internet. It works perfectly for me, however I've been trying for some time to get something to work with it. * I need to put an image link in the textbox that expands. This is proving to be difficult because any image I put in the the Accordion Textbox paragraph in the .html files displays outside the accordion textbox. Here is a part of my .html file: Click on one of the following boxes to choose your method in booking a procedure. From then on follow the prompts.
×
×
  • Create New...