17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 944 Views |
-
Couple of questions

14 September 2007 at 11:44pm
Hey,
I just heard of SS at Read/Write Web. Looks very very good. I have two questions that I couldn't answer from searching the docs.
Basically, I want to create a web app with a login system built in and a blog and forum and other features to interact with the community.
1. Can PHP code be part of the page's content? This would be useful for doing database lookups.
2. If so, is there a way to figure out if a user is logged in or not?
Thanks.
Pierre -
Re: Couple of questions

16 September 2007 at 7:45pm
We try to separate design/layout and code as much as possible, so you can't just put PHP directly into your page templates, but you can achieve the same thing by adding something to both your template and code files, for example inside your Page.php and Page.ss files:
<?php
/** Get something cool
* @return CoolObject Something that's cool
*/
function GetCoolThing() {
return $this->cool;
}
?>And in your template, just use the following:
[html]$GetCoolThing<!-- To access a field on whatever you return (e.g. The time a page was created) -->
$GetCoolThing.Created[/html]Hope that helps some - if you want to know anything else, take a look at the tutorials, they should help you get started.
-
Re: Couple of questions

18 September 2007 at 8:41pm
Thanks for that Matt. I'll dig into the tutorials.
Pierre
| 944 Views | ||
|
Page:
1
|
Go to Top |

