Jump to content

rcorlew

Members
  • Posts

    307
  • Joined

  • Last visited

    Never

About rcorlew

  • Birthday 04/07/1975

Contact Methods

  • Website URL
    http://www.thenetprogroup.com/

Profile Information

  • Gender
    Male
  • Location
    Belton Missouri

rcorlew's Achievements

Member

Member (2/5)

0

Reputation

  1. Hey if the "Topic Solved" tab was here, I would click it. Topic Solved.
  2. Superb, works perfectly. Thanks for the quick reply.
  3. i am not sure what you are wanting exactly because you are pretty vague on what you are asking but I will take a shot at helping/ You need to know two things: 1)You have to change the month and the year for the calendar before the query 2)You have to make a make a way to select the change needed (the month and year) change the top code from <?php $m = (!$m) ? date("m",mktime()) : "$m"; $y = (!$y) ? date("Y",mktime()) : "$y"; ?> To this <?php $y = isset($_GET['y]) ? $_GET['y'] : date('Y'); $m = isset($_GET['m']) ? $_GET['m] : date('m'); ?> That is going to set up your sql query that will select the month and year from sql Next you need to create the link that will allow users to select the month year and later the event Change this <?php echo "<a href =calendar.php> Home </a>"; ?> to this <?php echo "<a href=\"?y=$y&m=$m&day=\"> Home </a>"; ?> That should get you going in the right direction.
  4. I have a loop that I am trying to run through 12 times. It starts off just fine except that it runs through the loop for 1969 times. I have no idea what I am doing wrong as this very code works elsewhere but not for this. <?php $year = isset($_GET['year']) ? $_GET['year'] : date('Y'); $month = isset($_GET['month']) ? $_GET['month'] : date('m'); $first = mktime(0,0,0,$month,1,$year); // timestamp for first of the month $offset = date('w', $first); // what day of the week we start counting on $daysInMonth = date('t', $first); $monthName = date('F', $first); echo "<select name=\"month\" onChange=\"document.location.href=this.value\" class=\"topNavSelect\"> <option>$monthName</option>"; $x = 1; $y = 12; for( $i = $x; $i <= $y; $i++ ) { $thisMonth = strtotime("$year-$month-01 $i month"); $nMax = date('t', $thisMonth); $nDay = ($day > $nMax) ? $nMax : $day; list($y, $m) = explode('-', date('Y-m', $thisMonth)); $thisMonth = date('F', $thisMonth); $showMonth = "?year=$y&month=$m&day="; $myMonth = $thisMonth; echo "<option value=\"$showMonth\">$myMonth $i $y</option>"; } echo "</select>"; ?> I am sure that it is something simple that I have overlooked.
  5. I am waiting on here to send over some better pics, I know that I cannot get it much better than what it is, I might just take some myself, and I am going to get a better picture of a house too, but it will take a day or so to get that done. I know that the header image is close, but needs a little tweaking, as for the sign, she fell in love with that, and so did her boss, which I am trying to talk into letting me put a search script on the company's server so I can do away with that stupid IFRAME, so I do not think I could get away with changing that. I appreciate the comments, I will keep working on it.
  6. Ok it is fixed on the let her show you how... As for blending her into the background, I will take a look at that, not making any promises though.
  7. I have been thinking of sharpening up the header a smidge, but I do not want the file size too big, any suggestions on a ceiling for the size, or I suppose I could just slice it in two or something like that. The calendar will be linked up to an online booking app, it is already there, but there are no open dates right now, but when there are open days, you can select them to have a showing. I have been tossing around the idea of making the < h 4 > be a crimson color, since it appears on several different pages, and tossing a dashed border around the links on the navbar to make it say hey, I am a navbar. I will work on those color additions tonight, hopefully I can get a "WOW" out of it.
  8. I am getting ready to launch the final phase of a website. Since there are some serious modifications to the existing site, I am hosting this on my test server for now. Here is the site: http://corlewfamily.dnsalias.net/fsbs/ It should be working correctly, the house listings are just for testing, they will be replaced.
  9. Set up a database with template name and all that in there, then when someone goes to site1.com, store that as a $_SESSION variable. You could also set up a directory tree and pass all the css and stuff off the DB before creating the HTML, thus the ability to host multiple sites on one server/account.
  10. Needs some serious line-height increase.
  11. I would probably drop the "tested under firefox and IE" and all that, just make sure it works for them. I like the layout, although the font-size is kinda big, but the overall impression is a nice layout which is easy to navigate. That is what most sites lack unfortunately, who wants to read 500 words to find a link to a page they are looking for, so I like the "one click" approach on sites. Overall good job (who would have thought blue and green could work together)
  12. We are going to replace the logo with some flash with action script. Right now it is just filling in the space until we can get the time to do it, which should be done in the next few days. I do not know why there is the white background when hovering over the image, I did not notice it on any browser but IE after you mentioned it, so I will make sure that is fixed when the new header is rolled out.
  13. I will indeed take a look at those this weekend. I have been up to my elbows in a couple of other projects and never really put the final touches on this.
  14. Did all of the above, the spelling mistakes are just me being in a hurry, I have other projects waiting and need this done. I am go to be making a cms that spell checks, but until I get done with that, I have been hand coding using good 'ol notepad. I had forgotten to upload the new css theme and could not figure out why nobody like the font or line spacing, lol. Anyway, thanks for the input, I really do take it in and try to incorporate as much as possible.
  15. Ok I fixed the line spacing, and yes I do speak English. I plan on rewriting most of the text on the site, just wanted there to be enough content for people to look at to make it easier to get a feel for how it lays out.
×
×
  • 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.