Jump to content

derekmcd

Members
  • Posts

    17
  • Joined

  • Last visited

    Never

About derekmcd

  • Birthday 07/03/1986

Contact Methods

Profile Information

  • Gender
    Not Telling
  • Location
    QLD, Australia

derekmcd's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. No problems glad to be a help
  2. You need to remove this from the config $number['class'] = 1; echo $C[$number['class']]; It is at the bottom after all the $C[...]'s
  3. try making this <td align=\"left\">$C[$row['class']]</td> into this <td align=\"left\">".$C[$row['class']]."</td> Not that it should make a big difference, but it might. if that doesn't work try this: $gender = $row2['sex']; $class = $row['class']; echo " <tr> <td align=\"right\"><img src=\"../images/hairs/".$gender."/".$row['hair'].".gif\"></td> <td align=\"center\">".$row['name']."</td> <td> </td> <td align=\"left\">".$C[$class]."</td> <td> </td> <td> </td> <td align=\"left\">".$row['base_level']."/".$row['job_level']."</td> </tr>"; }
  4. in that case you need to use $row2 not $row Replace: $gender = $row['sex']; With: $gender = $row2['sex']; That should fix it.
  5. have you checked that there is a value for "sex" in the char table. If there is what you can do is simply output what the array is by using this piece of code echo "<pre>"; print_r($row); echo "</pre>"; put that after this line while ($row = mysql_fetch_array($result)) { that will tell you if the sex field is there and if it has a value.
  6. That would depend on how the site has been implemented. How is the site structured? Are you using a Blogging tool? Are there templates? If you use a header include you should be able to place the banner in there. To give you more information you would need to give a bit more informtion on how you get posts and stuff.
  7. you actually jsut use substr() substr("ABCD123", -4); //Returns D123 To get the last 2 simply use this substr("some string", -2);
  8. $cardnum = "XXXXXX".substr($_POST['creditcard_num'], -2);
  9. first of all you need to get a current timestamp (which is in seconds) and add the number of seconds to the current timestamp that are in 7 days <?php $nowtime = time(); $startDate = date("Y-m-d", $nowtime); $endDate = date("Y-m-d", ($nowtime + (60 * 60 * 24 * 7)); $dateRange = sprinttf(', CompanyStart = "%s", CompanyEnd = "%s"', $startDate, $endDate); ?> That should make your end date 1 week (7 Days) more than the current time.
  10. This is a problem that I know a few people have had You may need to modify the database table to have a new field called "urltitle" or something and that way you can populate this directly from the title when a page/post is created then you can use that in your URL and MYSQL statements. You will be able to use the value in a URL like this SELECT title FROM pages WHERE urltitle = 'thats-awsome' so the value of title can have all the characters you need and in this case can return "That's Awsome", no need to replace dashes or anything. Depending on the size of the table this migh be some work, as with any changes like this i sugest you make a backup first.
  11. The file attached is the entire code. It is quite long so to be nice I jsut posted the area around line 77 but have attached the entire file to the topic
  12. Hi, I'm having problems here. I can't seem to find the problem within the code. I have pasted the code here. It is a custom compoent being developed for a Joomla install <input type="hidden" name="option" value="com_extjobs" /> <input type="hidden" name="task" value="" /> <input type="hidden" name="func" value="<?php echo $func; ?>" /> <input type="hidden" name="id_industry" value="<?php echo $row->id_industry; ?>" /> <input type="hidden" name="cid[]" value="<?php echo $row->id_industry; ?>" /> </form> <?php } ?> <!-- THIS IS LINE 77 --> <?php //Function to generate and display the default page function show($rows, $pageNav, $lists, $func){ //initialize some variables used within the function $db =& JFactory::getDBO(); JHTML::_('behavior.tooltip'); [attachment deleted by admin]
×
×
  • 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.