i got an old drupal based site to do some specifictions. I don't know wich version - the last update entry in "updates.inc" ist "2005-05-07" => "update_131"
i made a dump from database and copied the files to my test - environment.
My System is debian etch with PHP Version 5.2.3-1+b1
I get no Error-Messages. The only output in the browser is an html-document with not parsed markers like this:
I just changed over one of my sites from Joomla and I'm working on
the other one and made a stupid mistake. While I was editing the blocks positions,
I hid the user menu so now I can't find my way back into the admin area.
Please help - I'm a noob with Drupal but very excited.
Ok, I have spent many hours trying to research different CMS products and hope someone can answer the question. I am familiar with ASP/JavaScript and Access/SQL technology for building websites. This is my first plunge into CMS land.
I'm totally new to Drupal. I got database content and I would like to pass it to a template
[code]
function viewproperty_page() {
$result=db_query("SELECT * FROM {property} LIMIT 10");
while($row=db_fetch_array($result)){
$content[]=$row;
}
//print theme('page',$content);
// Now i want to pass it to a page call viewproperty.tpl.php
}
[/code]
How do i pass $content array in viewproperty.tpl.php ?