<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Killersites.com Web Design Forums]]></title>
		<link>http://www.killersites.com/forums/</link>
		<description><![CDATA[The most recent topics at Killersites.com Web Design Forums.]]></description>
		<lastBuildDate>Sat, 21 Nov 2009 07:11:47 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Radio Button Help, need one button to disable other buttons]]></title>
			<link>http://www.killersites.com/forums/topic/2500/radio-button-help-need-one-button-to-disable-other-buttons/new/posts/</link>
			<description><![CDATA[Hey guys, 

I have a "submit Support Ticket" form that is built up of about 20 radio buttons and all my services. Witch looks something like..


( O represents a radio button )

Service Type:   |    O In home       O Drop off
------------------------------------------------------------
Service:           |  O Computer repair
                       |   O othr service
                       |   O Other service
                       |   O wireless network setup


Now, most of my services can be done both in home and by drop off. However things like wireless network setup must be done in home. I would like to make it so that when the user checks the "in home" box, they are not able to select these services. 

I have had a few ideas on how i could go about doing this but i would like some other opinions before i do anything. At the moment i have it return as a form error, so if they have checked say, "Drop Off" Service type.. and "wireless network setup" as the service. It submits the form but than sends the user back saying "Error this service cannot be done in home", id like it to happen before they submit the form. (this is also posted in javascript, but id really like to find a way to do it in php)]]></description>
			<author><![CDATA[dummy@example.com (jlhaslip)]]></author>
			<pubDate>Sat, 21 Nov 2009 07:11:47 +0000</pubDate>
			<guid>http://www.killersites.com/forums/topic/2500/radio-button-help-need-one-button-to-disable-other-buttons/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[PHP include() not diplaying contents]]></title>
			<link>http://www.killersites.com/forums/topic/2381/php-include-not-diplaying-contents/new/posts/</link>
			<description><![CDATA[[b]EDIT[/b]
Okay, this PHP crap has left my brain in a pretzel. I figured out a way to get the same effect with iframes, so I'm just not going to use the PHP include function. When, if ever, I really have to use it, I'll figure it out then.

Anyway, I really appreciate the help from everyone. This is the best web coding forum ever! :D

[quote]
Hello,
I recently learned about PHP includes() and decided to try and use it on a header and footer for a website I'm building. I saved the header contents as a PHP file, and I put the include code into my index.htm page with the correct path name. But for some reason, when I view the index.htm document it doesn't display the contents of header.php. It doesn't give me an error either. I tried to upload it to my hosting to see if it would work then, but again just a blank page.

This wouldn't be the first time PHP has stumped me, and I really appreciate the help. :)

My header.php code:

[code]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<link rel="stylesheet" href="CSS/navbarAWARE.css">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>
<div align="center"><img id="logo" src="Images/logoAWAREwhite440.png" width="440" height="396"><br>
</div>
<div id="navcontainer">
<ul id="list-nav">
  <li><a href="index.htm">Home</a></li>
  <li><a href="whoweare.htm">Who We Are</a></li>
  <li><a href="hawkpierce.htm">Hawk Mystery</a></li>
  <li><a href="eduprograms.htm">Training &amp; Educational Programs</a></li>
  <li><a href="rehabworld.htm">A Rehabilitator's World</a></li>
  <li><a href="needslist.htm">Needs List</a></li>
</ul>
</div>
</body>
</html>
[/code]

The PHP include() code in the index.htm document:

[code]<body>
<div id="container">
<div class="menu"><?php include("header.php"); ?></div>

</div>
</body>[/code]

Thanks again,
-Raven
[/quote]]]></description>
			<author><![CDATA[dummy@example.com (jlhaslip)]]></author>
			<pubDate>Sat, 21 Nov 2009 07:03:52 +0000</pubDate>
			<guid>http://www.killersites.com/forums/topic/2381/php-include-not-diplaying-contents/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Counting the number of rows??]]></title>
			<link>http://www.killersites.com/forums/topic/2453/counting-the-number-of-rows/new/posts/</link>
			<description><![CDATA[Hey guys, im trying to get my webpage to display the number of "support tickets" that the user has. Here is the code(session->username is self explainitory):



$getstickets = mysql_query( "SELECT * FROM `sticket` WHERE `username` = '$session->username'" ); 
$result = mysql_query($getstickets); 
mysql_num_rows($result);
echo mysql_num_rows($result); 

But it keeps saying mysql_num_rows() supplied argument is not a valid mySQL result resource. Can anyone tell me what im doing wrong?]]></description>
			<author><![CDATA[dummy@example.com (delirium)]]></author>
			<pubDate>Sat, 21 Nov 2009 04:09:26 +0000</pubDate>
			<guid>http://www.killersites.com/forums/topic/2453/counting-the-number-of-rows/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[PHP pagination]]></title>
			<link>http://www.killersites.com/forums/topic/2490/php-pagination/new/posts/</link>
			<description><![CDATA[I found this guide on how to create a paginated image gallery in PHP. I have adapted it to suit my needs, but there is one bit which is completely stumping me.

I reckon you'd have to read it all to be able to help me, so please do, if you have the time:

[url]http://www.lateralcode.com/simple-php-gallery-pagination/[/url]

The bit which is confusing me is:

        $count = 0;
	$skip = $page * $per_page;

	while ( $count < $skip && ($file = readdir($handle)) !== false ) {
		if ( !is_dir($file) && ($type = getPictureType($file)) != '' )
			$count++;
	}

the reason is, on the next line, it resets $count to 0, so the above loop to me seems pointless. I took it out and re-ran the code and it breaks so it is needed.

But all it does is increment count until count equals skip and then it is reset on the next line anyways.

i think the main reason im getting so confused is that the article isn't explaining it wel enough, perhaps because they don't expect the reader to be a noob, ha.
help me someone please :(.]]></description>
			<author><![CDATA[dummy@example.com (jlhaslip)]]></author>
			<pubDate>Fri, 20 Nov 2009 02:30:37 +0000</pubDate>
			<guid>http://www.killersites.com/forums/topic/2490/php-pagination/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Resize pictures]]></title>
			<link>http://www.killersites.com/forums/topic/2486/resize-pictures/new/posts/</link>
			<description><![CDATA[Hello, 

I created a page where I display a picture using the following script:

<img src="../pictures/<?php echo $row['picture']; ?>

Where 'picture' is the record that contains the name of the picture, for example: mypicture.jpg

Those pictures are first uploaded to the ../pictures/ directory. Until know I have to manually resize them to a fixed width. 

How could I tell php to resize those pics automatically to that same fixed width (with the same ratio of course), so I can upload the pics without having to pre-resize them?

Thanks

Eduardo]]></description>
			<author><![CDATA[dummy@example.com (falkencreative)]]></author>
			<pubDate>Thu, 19 Nov 2009 17:23:37 +0000</pubDate>
			<guid>http://www.killersites.com/forums/topic/2486/resize-pictures/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[php Jon Lebensold Shopping Cart]]></title>
			<link>http://www.killersites.com/forums/topic/2482/php-jon-lebensold-shopping-cart/new/posts/</link>
			<description><![CDATA[Hi,
I need HELP i'v finished the shopping cart and all works fine, which is forselling food, but i wanted to add another xml for selling some wines, i am struggling with this i also wanted a home page with links to the food page and the wine page, Best Regards. hope someone can help please.:)]]></description>
			<author><![CDATA[dummy@example.com (shaman)]]></author>
			<pubDate>Wed, 18 Nov 2009 14:21:23 +0000</pubDate>
			<guid>http://www.killersites.com/forums/topic/2482/php-jon-lebensold-shopping-cart/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[MY PHP WEBSITE]]></title>
			<link>http://www.killersites.com/forums/topic/2471/my-php-website/new/posts/</link>
			<description><![CDATA[I made this website, full PHP driven using a MYSQL database : http://ww w.webh ost-choice.c om [remove spaces]

what do you think? thnx]]></description>
			<author><![CDATA[dummy@example.com (synbitz)]]></author>
			<pubDate>Mon, 16 Nov 2009 19:26:37 +0000</pubDate>
			<guid>http://www.killersites.com/forums/topic/2471/my-php-website/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[How to transfer database from older website to newer one]]></title>
			<link>http://www.killersites.com/forums/topic/2058/how-to-transfer-database-from-older-website-to-newer-one/new/posts/</link>
			<description><![CDATA[Hi everyone
I have a database with some tables in a website.
Now our company decided to open a new website and permanently delete the old one.
Will anyone tell me how to transfer that database form older site to the newer one?
The data is too important and I do not want to lose it anyway.]]></description>
			<author><![CDATA[dummy@example.com (falkencreative)]]></author>
			<pubDate>Sun, 15 Nov 2009 20:59:43 +0000</pubDate>
			<guid>http://www.killersites.com/forums/topic/2058/how-to-transfer-database-from-older-website-to-newer-one/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Injecting Field from a Database into a Textfield Form]]></title>
			<link>http://www.killersites.com/forums/topic/2466/injecting-field-from-a-database-into-a-textfield-form/new/posts/</link>
			<description><![CDATA[Hi Everyone! :)

I just have a question regarding Object Orientated PHP if anyone is experienced with that concept. well..i have a gui page and a controller page for functions and sql queries.
i like to think that people can learn the more they practice. how true indeed.

Issue is that i want to show the value of one single field from the database into a textfield value. then i wasn to be able to update the message by submitting that button. i had it working the other day but i've gone blank as to what ive done wrong here.

Admin Controller
[code]
function getCurrentMessage($strMessage = "")
    {
    
    $this->strMessage = $strMessage;
    
 $DBA = new DBAccessor("localhost","root","root", "dblw") or die ('cannot connect to   database error: '.mysql_error()); 
  $DBA->dbConnect();
  $sql = mysql_query("SELECT `tablescrollingmessage`.`strMessage` AS `strMessage` FROM `tablescrollingmessage`");
  
  while($row = mysql_query($sql)) {
  extract($row); 
  }

 $DBA->dbClose();
  return $strMessage;
}

function messageSaved($currentMessage)
    {
         
$DBA = new DBAccessor("localhost","root","root", "lwdb") or die ('cannot connect to database error: '.mysql_error()); 

     
 $sql = 'UPDATE `tablescrollingmessage` SET strMessage='.$currentMessage.';';
      
      //Connect to the database and execute the query
   $DBA->dbConnect();
   $result = mysql_query($sql);
   $DBA->dbClose();
    }

[/code]

GUI Form
[code]
<?php
include ('AdminController.php');
$mesg = new AdminController;
$mesg->getCurrentMessage($strMessage);
$mesg1 = new AdminController;
$mesg1 = $mesg->messageSaved($currentMessage);
$mesg = $_POST['strMessage'];
 ?>
 <html>
<head></head>
<body>
   <form id="form1" name="adminMessage" action="" onsubmit="return check_form()" method="post">


<div id="setmessage">
   <input type="image" src="images/setmessage.gif"  alt="setmessage"  method="post" border="0" /></a>
<div id="textfield">
   <input type="text" name=strMessage size="95" maxlength="95" border="0" value="<?php echo $mesg; ?>" /> 
</form>
</body>
</html>
 



[/code]]]></description>
			<author><![CDATA[dummy@example.com (falkencreative)]]></author>
			<pubDate>Sat, 14 Nov 2009 17:05:30 +0000</pubDate>
			<guid>http://www.killersites.com/forums/topic/2466/injecting-field-from-a-database-into-a-textfield-form/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Problem with page redirecting: header("Location: $url");]]></title>
			<link>http://www.killersites.com/forums/topic/2410/problem-with-page-redirecting-headerlocation-url/new/posts/</link>
			<description><![CDATA[Hello everybody,

This is a warning i've got whenever I use [color=red] "header("Location: $url"); "[/color].
[color=red]
Warning: Cannot modify header information - headers already sent by (output started at C:\Inetpub\vhosts\qwebdesign.net\httpdocs\admin\index.php:15) in C:\Inetpub\vhosts\qwebdesign.net\httpdocs\admin\user_manager.php on line 319
[/color]

Is there any solution to redirect to a url without using "header("Location: $url"); Or somehow I can fix the above problem?

I've been reading some topics on some websites, and they are all about how to use header("Location: $url"); but i haven't found any right answer for my situation.

[color=red]Note[/color]: "header("Location: $url");" runs ok on localhost at my computer,  I only got this problem when I upload my project to a hosting.

Thank a lot for helping me!
Quyen,]]></description>
			<author><![CDATA[dummy@example.com (quyen)]]></author>
			<pubDate>Fri, 13 Nov 2009 05:27:48 +0000</pubDate>
			<guid>http://www.killersites.com/forums/topic/2410/problem-with-page-redirecting-headerlocation-url/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Help with if/else in DELETE]]></title>
			<link>http://www.killersites.com/forums/topic/2455/help-with-ifelse-in-delete/new/posts/</link>
			<description><![CDATA[Hello, 
Sorry to bother you guys.

If l have a variable called $value and this value fetches array from my database.

ex.


$xyz=mysql_query("SELECT contentext FROM blablabla WHERE parent is NUTLL);

  foreach($xyz as $value =>$key){
        echo $value[1][0]['contenttext'];
//where 0 is my error messages and 1 is my reuslt
   }

then, l have

$xyz2=mysql_query("SELECT contentext FROM blablabla WHERE  is_campaign is NOT NULL AND parent IS NOT NULL);

  foreach($xyz2 as $value2 =>$key2){
        echo $value2[1][0]['contenttext'];
 }



So now if l am working on two different delete buttoms. I will like the delete.gif to be red if nothing is in the $value.

l went this way:

 if(is_num($value > 0){

       echo " you can not delete since the $value has a $value2 contents in it";

 }else{
        echo " You can delete this $value 2 since it contains no $value content";

}



This is not working mich for me.

Any tip on doing this ?


Thanks]]></description>
			<author><![CDATA[dummy@example.com (quyen)]]></author>
			<pubDate>Thu, 12 Nov 2009 18:55:18 +0000</pubDate>
			<guid>http://www.killersites.com/forums/topic/2455/help-with-ifelse-in-delete/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[HELPPPPPPPPPPPPPPPPPPPPP!!!!!!!!!!!!!!!!!!!!!!!!!]]></title>
			<link>http://www.killersites.com/forums/topic/2429/helppppppppppppppppppppp/new/posts/</link>
			<description><![CDATA[I designed and tested out a form that sends it's results to an email and it worked perfectly well before i tried to add an image uploader which i had some bugs with. I then decided to cancel the image uploader field in the form and optrd to redirect the user to an image uploader page which i created seperatlely after the form has been submitted to the specified email. But after doing this, i noticed that the stupid form would no longer process information but instead it gives me an error page like this,

 "The requested method POST is not allowed for the URL /sendresults.php". 


The php script i use for processing the form is

<?php
//--------------------------Set these paramaters--------------------------

// Subject of email sent to you.
$subject = 'Registration Details'; 

// Your email address. This is where the form information will be sent. 
$emailadd = 'the email address i use'; 

// Where to redirect after form is processed. 
$url = 'the confirmation page in my server'; 

// Makes all fields required. If set to '1' no field can not be empty. If set to '0' any or all fields can be empty.
$req = '0'; 

// --------------------------Do not edit below this line--------------------------
$text = "Results from form:\n\n"; 
$space = ' ';
$line = '
';
foreach ($_POST as $key => $value)
{
if ($req == '1')
{
if ($value == '')
{echo "$key is empty";die;}
}
$j = strlen($key);
if ($j >= 20)
{echo "Name of form element $key cannot be longer than 20 characters";die;}
$j = 20 - $j;
for ($i = 1; $i <= $j; $i++)
{$space .= ' ';}
$value = str_replace('\n', "$line", $value);
$conc = "{$key}:$space{$value}$line";
$text .= $conc;
$space = ' ';
}
mail($emailadd, $subject, $text, 'From: '.$emailadd.'');
echo '<META HTTP-EQUIV=Refresh CONTENT="0; URL='.$url.'">';
?>


Please am i doing something wrong?]]></description>
			<author><![CDATA[dummy@example.com (Lawanson)]]></author>
			<pubDate>Mon, 09 Nov 2009 09:45:25 +0000</pubDate>
			<guid>http://www.killersites.com/forums/topic/2429/helppppppppppppppppppppp/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[quick easy php validation question?]]></title>
			<link>http://www.killersites.com/forums/topic/2430/quick-easy-php-validation-question/new/posts/</link>
			<description><![CDATA[Im putting in url validation. 

Is this...
if (preg_match("/^(http(s?):\/\/|ftp:\/\/{1})((\w+\.){1,})\w{2,}$/i", $website)) {
echo "Valid URL";
}
else {
echo "Invalid URL";
}

the same as this...
if (!preg_match("/^(http(s?):\\/\\/|ftp:\\/\\/{1})((\w+\.)+)\w{2,}(\/?)$/i", $website)) {
	header( "Location: $errorurl" );
	exit ;
}

Note, I just added the "!" infront of preg_match and went strait to the error. Am I right here?]]></description>
			<author><![CDATA[dummy@example.com (administrator)]]></author>
			<pubDate>Sun, 08 Nov 2009 13:33:00 +0000</pubDate>
			<guid>http://www.killersites.com/forums/topic/2430/quick-easy-php-validation-question/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[How Does This Code Work??]]></title>
			<link>http://www.killersites.com/forums/topic/2417/how-does-this-code-work/new/posts/</link>
			<description><![CDATA[Hey, im starting to get really into php but im not completely familiar with all the code yet. 

I had my cousin type this up for my login system and its a comment/Guestbook thing. 

It works but im really not sure how and i would love to understand whats happening in this code. Could anyone please go through the code and explain whats happening?

The code is below, but here is an example of what im looking for..

$message = htmlspecialchars(addslashes("$_POST[message]"));
**This sets the variable "$message"**
 
Ideally i would like en explanation like that for every line, thanks so much in advance.


______________________________________________________________________________
//submit comment

switch ($_GET['page'])
{     case 2:  

if(isset($_GET["sign"]))
{

$message = htmlspecialchars(addslashes("$_POST[message]"));
$time = date("F j, Y, g:i a"); 
$querty = mysql_query("INSERT INTO guestbook(owner,postedby,post,time) VALUES('$req_user','$session->username','$message','$time')");echo "<center>Your 

message has been posted</center><br>"; }

else {echo ( "Message was not posted" ); // or no request sent
}  

break; 

}

// Display comment system

$req_user = trim($_GET['user']);
$getcomments = mysql_query( "SELECT * FROM `guestbook` WHERE `owner` = '$req_user' ORDER BY `ID` DESC" );

while ($comments = mysql_fetch_array($getcomments))
{
	echo "<a href='userinfo.php?user=$comments[postedby]'>$comments[postedby]</a> ($comments[time]) - $comments[post] <br>";
}

//Display comment submit box

echo "<center><br/><b>Sign $req_user's guestbook</b><br/>
<form  action='userinfo.php?page=2&user=$req_user&sign=$req_user&from=".$session->username."/' method='POST'>

<textarea name='message' rows='5' cols='30' align='left'></textarea><br/><input type='submit' value='Update' name='submit'></form></center>";

/* Link back to main */
echo "<br>Back To [<a href=\"main.php\">Main</a>]<br>";

?>

This is the line i really dont get, 
<form  action='userinfo.php?page=2&user=$req_user&sign=$req_user&from=".$session->username."/' method='POST'>

What page is that? i have a userinfo.php but what all the ?page= stuff.. i know its a HUGE part of php but i'm really new to this..]]></description>
			<author><![CDATA[dummy@example.com (delirium)]]></author>
			<pubDate>Thu, 05 Nov 2009 17:21:29 +0000</pubDate>
			<guid>http://www.killersites.com/forums/topic/2417/how-does-this-code-work/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Change the date format Mysql - php]]></title>
			<link>http://www.killersites.com/forums/topic/2390/change-the-date-format-mysql-php/new/posts/</link>
			<description><![CDATA[Hello, 

I'd like to change the date format from my DB (yyyy-mm-dd) to dd-mm-yyyy using php.

Here is the url: 

http://ww w.germanmarcano.com/eventos/indexEnglish.php


Here is the code:



[code]

<?php require_once('../Connections/connAdmin.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
{
  $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;

  $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

  switch ($theType) {
    case "text":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;    
    case "long":
    case "int":
      $theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case "double":
      $theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
      break;
    case "date":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;
    case "defined":
      $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
      break;
  }
  return $theValue;
}
}

$maxRows_RsEventos = 10;
$pageNum_RsEventos = 0;
if (isset($_GET['pageNum_RsEventos'])) {
  $pageNum_RsEventos = $_GET['pageNum_RsEventos'];
}
$startRow_RsEventos = $pageNum_RsEventos * $maxRows_RsEventos;

mysql_select_db($database_connAdmin, $connAdmin);
$query_RsEventos = "SELECT * FROM eventos ORDER BY fecha DESC";
$query_limit_RsEventos = sprintf("%s LIMIT %d, %d", $query_RsEventos, $startRow_RsEventos, $maxRows_RsEventos);
$RsEventos = mysql_query($query_limit_RsEventos, $connAdmin) or die(mysql_error());
$row_RsEventos = mysql_fetch_assoc($RsEventos);

if (isset($_GET['totalRows_RsEventos'])) {
  $totalRows_RsEventos = $_GET['totalRows_RsEventos'];
} else {
  $all_RsEventos = mysql_query($query_RsEventos);
  $totalRows_RsEventos = mysql_num_rows($all_RsEventos);
}
$totalPages_RsEventos = ceil($totalRows_RsEventos/$maxRows_RsEventos)-1;
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/MainTemplateE.dwt.php" codeOutsideHTMLIsLocked="false" -->
<head>

<link type="text/css" rel="stylesheet" href="/floatbox/floatbox.css" />

<script type="text/javascript" src="/floatbox/floatbox.js"></script>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-11331216-1");
pageTracker._trackPageview();
} catch(err) {}</script>


<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- InstanceBeginEditable name="doctitle" -->
<title>Events</title>
<!-- InstanceEndEditable -->
<link href="../css/main.css" rel="stylesheet" type="text/css" />
<!-- InstanceBeginEditable name="head" --><!-- InstanceEndEditable -->
</head>

<body>

<div id="banner">
    <div id="bannercentered">
         <div id="mainNav">
        
        <ul class="mainMenu1">
            
            <li><a href="../indexEnglish.php">Home</a></li>
          <li><a href="../biografia/indexEnglish.php">Biography</a></li>
         <li><a href="../juicioscriticos/indexEnglish.php">Critics</a></li>
        </ul>
        <ul class="mainMenu1">
            
            
            <li><a href="../repertorio/indexEnglish.php">Repertory</a></li>
          <li><a href="../grabaciones/indexEnglish.php">CDs</a></li>
          <li><a href="../grabacionesvivo/indexEnglish.php">Live Recordings</a></li>
        </ul>
        
        <ul class="mainMenu1">
            
            
            <li><a href="../videos/indexEnglish.php">Videos</a></li>
             <li><a href="../publicaciones/indexEnglish.php">Publications</a></li>
          <li><a href="../galeria/indexEnglish.php">Gallery</a></li>
          
         
        </ul>
        
         <ul class="mainMenu1">
            
            
       
          <li><a href="indexEnglish.php">Events</a></li>
          <li><a href="../contacto/indexEnglish.php">Contact</a></li>
          
         
        </ul>
      </div>
    </div>
</div>

<div id="content"><!-- InstanceBeginEditable name="contenido" -->
  <div id="contentcentered">
   
   <h1>Events</h1>
   
   <?php do { ?>
     <div class="eventosind">
       
       
       <p class="tituloeventos"><?php echo $row_RsEventos['titulo']; ?></p>
        
         
      
          
        <table class="tablaeventosinicio">
                   <colgroup>
                     <col class="coleventos1" />
                     <col class="coleventos2" />
                     </colgroup>
                   <tr>
                     <td class="negrita">Date:</td>
                        <td><?php echo $row_RsEventos['fecha']; ?></td>
                        </tr>
                   <tr>
                     <td class="negrita">Place:</td>
                        <td><?php echo $row_RsEventos['lugar']; ?></td>
                        </tr>
                   <tr>
                     <td class="negrita">Time:</td>
                        <td><?php echo $row_RsEventos['hora']; ?></td>
                        </tr>
                 </table>
                 <p class="pequena"><?php echo $row_RsEventos['comentarios']; ?></p>
     </div>
     <?php } while ($row_RsEventos = mysql_fetch_assoc($RsEventos)); ?></div>
<!-- InstanceEndEditable --></div>

<div id="footer">
    <div id="footercentered">
    <div id="copyright">
    <a href="../indexEnglish.php">home</a> | <a href="../administracion/loginprincipal.php">administration</a> |  <a href="../contacto/indexEnglish.php">contact</a> &nbsp;&nbsp;&nbsp;Copyright © Germán Marcano 2009<br />
    </div>
  </div>
</div>
</body>
<!-- InstanceEnd --></html>
<?php
mysql_free_result($RsEventos);
?>
[/code]

Thanks


Eduardo]]></description>
			<author><![CDATA[dummy@example.com (edoplaza)]]></author>
			<pubDate>Thu, 05 Nov 2009 13:16:21 +0000</pubDate>
			<guid>http://www.killersites.com/forums/topic/2390/change-the-date-format-mysql-php/new/posts/</guid>
		</item>
	</channel>
</rss>
