|
|
|||||||||
|
|||||||||
|
|||||||||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
|
|
Generate data entry and reporting .NET Web apps in minutes, straight from your database. Read our FREE whitepaper “Build Web 2.0 Applications Without Hand-Coding” Download now! |
|
#1
|
|||
|
|||
|
Physics Post
Hey all, I bought site works pro and this is what I made
http://www.physicspost.com thanks for your feedback! |
|
#2
|
||||
|
||||
|
uh-oh!!!
http://www.devarticles.com/forum/sh...=&threadid=2042 here's the problem with using site templates. |
|
#3
|
|||
|
|||
|
hmmm yeah, I'm trying to customize it a bit, I don't know much php though.
|
|
#4
|
|||
|
|||
|
yeah, Im sure it doesn't require much php to edit the template.
Ive noticed that all the sites running under SiteWorksPro have the same layout, maybe a different color scheme. This is the reason I hate CMSs because the webmasters get lazy (in most occassions) and don't even design the site. SiteWorksPro is a great script from what ive seen though, does it have a built in forum or do you need an external one? |
|
#5
|
|||
|
|||
|
no built in forum...
Quote:
Which is exactly why we get siteworkspro! We don;t have to. We focus on content. |
|
#6
|
|||
|
|||
|
yeah but design is just as important no matter what anyone says...people say Content is king but you need a design to display it.
|
|
#7
|
|||
|
|||
|
Quote:
but if the design is approved on one site you can use it everywhere ...the only problem is confusion (people confuse one site with another because they look alike) or not attractive enough (because it's all the same old **** again, boring ) .....but looking at your site, it's all about content, I don't think anybody would care if it would look really new or the same as another site ![]() |
|
#8
|
|||
|
|||
|
Thanks for all your comments, I'm now starting to customize things a little more each day. I got some new colors and graphics up, tell me what you think. Thanks!
|
|
#9
|
|||
|
|||
|
nice to see ur making ur site original, the actual default template isnt bad for a physics website though...
__________________
You don't deserve to read my signature...yeah! That's it, keep walking...yeah walk away from me! That's it! Get out of my pub, you're barred! |
|
#10
|
|||
|
|||
|
Re: Physics Post
Quote:
I'm working on a Norwegian site that uses SiteWorksPro as CMS. I'm looking for a script tha displays 'Highest Rated Articles' as you have on yours site. Is it posible to get a copy of that script? Or can you help me make one? My php skills is not good. |
|
#11
|
|||
|
|||
|
here is how I did it:
Code:
<?php
$dbconnect = mysql_connect("****", "*****", "*****");
$database = mysql_select_db("physicspost", $dbconnect);
?>
<b>Top Rated Articles</b>
<br />
<?php
$result = mysql_query("SELECT pk_aId, aTitle, aRatingTotal FROM tbl_Articles ORDER BY aRatingTotal desc LIMIT 5");
while ($row = mysql_fetch_array($result))
{
?>
<a href='articles.php?articleId=<?php echo $row["pk_aId"]; ?>'><?php echo $row["aTitle"]; ?></a><br />
<?php
}
?>
|
|
#12
|
|||
|
|||
|
Quote:
The reason why SiteWorks doesnt include a forum is because 90% of our customers already have forums setup and it would be a problem trying to port the data from one database layout to another, plus there are plently of free forums out there. |
|
#13
|
|||
|
|||
|
TANK YOU dethfire!
I'll working on the sitedesigne now, for the admin part to. I wil post you when I'm finish. |
![]() |
| Viewing: Dev Articles Community Forums > Web Design > Site Reviews > Physics Post |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|