I'm in the early stages of developing a site that will have a webpage for each database entry. My question is - what are the pros and cons to having either (1) a single php page with a $_GET returning the specific database item or (2) individual webpages for each item?
For instance, example 1 would be like this -
mysite.com/alphabet.php?letter=a
mysite.com/alphabet.php?letter=b
mysite.com/alphabet.php?letter=c
Example 2 would be -
mysite.com/alphabet/letter_a.php
mysite.com/alphabet/letter_b.php
mysite.com/alphabet/letter_c.php
The only site I built heavily off of MySQL, I used example 1. Given that the code to display these would function the same for each entry, I'd assume that example 1 would be the best practice, but when I go to similar sites, they seem to favor example 2.
I've tried to search this site as well as the web for this answer, but it seems to be an awkward search phrase, as I've returned empty handed. Any insight would be much appreciated.
Actually both usages are old school for last years. Following formats used mainly:
mysite.com/alphabet/letter/a
mysite.com/alphabet/letter/b
mysite.com/alphabet/letter/c
This format is called friendly url or pretty url and in most cases this points to Alphabet controller's letter action with one argument a,b or c which will be like:
Class AlphabetController {
public function letter($letter) {
$DbModel->getListStartingWith($letter);
}
}
before anyone asks; I've googled my 'question', I've also looks at the 'Questions that may already have your answer' and none of them work.
What I'm wanting to do is 'Pagination'. However, I don't want to use Databases as I've never had to and I'd rather not give up and go to them now as XML does everything I want it for.
The code I have is the following:
$files = glob('include/articles/*.xml');
foreach($files as $file){
$xml = new SimpleXMLElement($file, 0, true);
}
I've tried these ones already: XML pagination with PHP, PHP XML pagination and Pagination Filtered XML file and have achieved nothing. I have also tried a lot of Javascript 'pagination' scripts and still nothing.
So to sum it up: I have four articles (More to be added) and I want to show 2articles per a page. The following information will be 'pulled' from the xml file: ID, TITLE, CONTENT, PICTURE, AUTHOR, DATE by doing $xml->id and so on for the rest of them. Does anyone know of any way of doing this? as I've spent the past four hours (Its 4:04AM GMT) and have found nothing that works yet. (If I find anything that does work I'll make sure to update the question with the working code encase there is anyone else out there that needs help with this too.)
For a start define the order in which you want your articles to appear. I.e. which article goes on page 1, which one on page 2, etc. This is important, because that order will be the base for your pagination algorithm. Please note that glob() is not guaranteed to return results in any specific order, which means the order can change from one invocation of your script to another (notably when you add new articles) -- almost certainly not what you want.
Then the second step is to introduce another variable which is part of your URL that denotes the actual page (number) you're on. The URL query string would be a natural choice for putting this information, so your URL's look like: article.php?page=1. On the PHP side you can use the $_GET superglobal to retrieve the query string parameters.
Thirdly, use the new style URL's whenever you link to your article.php script. Additionally, validate the input --especially when you also want to display the current page based on this parameter (or you will end up with an injection vulnerability). This also means you want to have a default value (in case the value is invalid/wrong/ or not supplied at all for some reason).
Finally, filter your articles based on the two key pieces of information: the order of the articles w.r.t. the page number and the page number: i.e compute the actual articles that should appear on the current page.
I am trying to create multiple landing pages populated dynamically with data from a feed.
My initial thought was to create a generic php page as a template that can be used to create other pages dynamically and populate them with data from a feed. For instance, the generic page could be called landing.php; then populate that page and other pages created on the go with data from a feed depending on an id, keyword or certain string in the url. e.g http://www.example.com/landing.php?page=cars or http://www.example.com/landing.php?page=bikes will show contents that are either only about cars or bikes as the case may be.
My question is how feasible is this approach and is there a better way to create multiple dynamic pages populated with data from a feed depending on the url query string or some sort of id.
Many thanks for your help in advance.
I use this quite extensively. For example, where I work, we often have education oriented landing pages, but target each landing page to different types of visitors. A good example may be arts oriented schools looking for a diverse array of potential students who may be interested in a variety of programs for any number of reasons.
Well, who likes 3d Modelling? Creative types (Generic lander => ?type=generic) from all sorts of social circles. Also, probably gamers (Gamer centric lander => ?type=gamer). So on.
I apply that variable to the body's class, which can be used to completely reorganize the layout. Then, I select different images for key parts of the layout based on that variable as well. The entire site changes. Different fonts can be loaded, different layout, different content.
I keep this organized via extensive includes. This sounds ugly, but it's not if you stick to a convention. You have to know the limitations of your foundation html, and you can't make too many exceptions. Sure, you could output extra crap based on if the type was gamer or generic, but you're going down the road to a product that should probably be contained in its own landing page if it needs to be that different.
I have a few landing pages which can be switched between several contents and styles (5 or 6 'themes'), but the primary purpose of keeping them grouped within the same url is only to maintain focus on the fact that that's where a certain type of traffic goes to in order to convert for this specific thing. Overlapping the purpose of these landing pages is a terrible idea.
Anyway, dream up a great template, outline a rigid convention for development, keep each theme very separate, and go to town on it. I find doing it right saves a load of time, but be careful - Doing it wrong can cost a lot of time too.
Have a look at htaccess URL Rewrite. Then your user (and google) can use a url like domanin.com/landing/cars but on your server the script will be executed as if someone entered domain.com/landing.php?page=cars;
If you use feed content to populate the pages you should use some kind of caching to ensure that you do NOT reload all feed on every requests/reloads the page.
Checking the feeds every 1 to 5 minutes should be enough and the very structure of feeds allows you to identify new items easily.
About URL rewrite: http://www.workingwith.me.uk/articles/scripting/mod_rewrite
A nice template engine for generating pages from feets is phptal (http://phptal.org)
You can load the feet as xml and directly use it in your template.
test.xml:
<foo><bar>baz!!!</bar></foo>
template.html:
<html><head /><body> ${xml/foo/bar}</body></html>
sample.php:
$xml = simplexml_load_file('test.xml');
$tal = new PHPTAL('template.html');
$tal->xml = $xml;
echo $tal->execute();
And it does support loops and conditional elements.
If you are not needing real time data then you can do this in a few parts
A script which pulls data from your rss feeds and stores the data somewhere (sql db?), timed by something like cron. It could also tag the entries into categories.
A template in php taking the url arguments and then adding the requested data and displaying it for the user. Really quite easy to do with php, probably a good project to use to learn as well if you are that way inclined
I have a list of keywords, about 25,000 of them. I would like people who add a certain < script> tag on their web page to have these keywords transformed into links. What would be the best way to go and achieve this?
I have tried the simple javascript approach (an array with lots of elements and regexping/replacing each) and it obviously slows down the browser.
I could always process the content server-side if there was a way, from the client, to send the page's content to a cross-domain server script (I'm partial to PHP but it could be anything) but I don't know of any way to do this.
Any other working solution is also welcome.
I would allow the remote site add a javascript file and using ajax connect to your site to get a list of only specific terms. Which terms?
Categories: Now if this is for advertising (where this concept has been done a lot) let them specify what category their site falls into and group your terms into those categories. Then only send those groups of terms. It would be in their best interest to choose the right categories because the more links they have the more income they can generate.
Indexing: If that wouldn't work, you can maybe when the first time someone tries to load the page, on your server index a copy of it and index all the words on their page with the terms you have and for any subsequent loads you have a list of terms to send them based on what their page contains. ideally after that you would have some background process that indexes their pages with your script like once a day or every few days to catch any updates. Possibly use the script to get a hash of the page contents and if changed at all you can then update your indexed copy.
I'm sure there are other methods, which is best is really just preference. Try looking at a few other advertising-link sites/scripts and see how they do it.
I have spent a good proportion of time today looking into expanding a drupal site I inherited, convinced that the issues I face were down to my bespoke SQL query.
I have since realised that the SQL is ok (checked it in PHPMYadmin and got it executing of sorts within the drupal website). So I am happy I am getting all the results from the database I need, looping through them and outputting them on the page in the specific markup.
The problem I have is where the loop is displaying. I cannot seem to figure the theming system or understand what is going on in template.php.
Let me explain:
The code I needed to change was in the template.php file. My understanding is that this file allows you to overide certain functions and theme elements.
Within the template.php file this is the code I needed to change:
//old function from original development
function abc($node,$submitted,$node_url) {
//execute code
}
So I added my code within function abc(), as I wanted it to be output where the old code was output.
This is my psuedo code for the sql and the loop:
function abc($node,$submitted,$node_url) {
$sql = 'my sql query'
$results =db_query($sql);
while ($data = db_fetch_array($results)) {
//output my results here
}
}
What led me to believe that the sql was wrong is that I should have got 23 results, but I was getting a lot more duplicate entries. After wasting alot of time looking in the wrong place, and scrutinising the sql, I realised that it was the function executing the sql and the loop multiple times, not the sql returning duplicate entries. I did this like so:
function abc($node,$submitted,$node_url) {
$sql = 'my sql query'
$results =db_query($sql);
$x = 1;
while ($data = db_fetch_array($results)) {
if ($x == 1) {
echo '<p style="background-color:#ccc;">'. $x . '. '.$data['title'] . '</p>';
}else{
echo '<p>'. $x . '. '.$data['title'] . '</p>';
}
$x = $x + 1;
}
}
As the code executed I was expecting an incremented number to go on for as many duplicate entries and shade the first entry's background to grey, but it did not. At result 23, it reset itself to 1 and shaded that entry's background to grey, indicating to me that it was the function executing the sql and the loop multiple times.
I am not wholly sure what this abc() function is, apart from the fact that when I place my code within it, the output displays where I need it to on a specific page and nowhere else (with no duplicate entries).
When I take my code out of this function (still within template.php), my code is output in the head of all pages which is not desirable.
Does anyone have any ideas as to what might be happening, where I can look to find out what this function is or know of a way for me to determine the display of my code?
I have been reading a bit about themes etc, but working with someone else's code is turning into a bit of a confusion nightmare.
Cheers in advance!
You are down the wrong path here, probably because you are inexperienced in how Drupal works, so let me give you some info and advice.
You could say that Drupal have to layers in which it execute code, the modules/core and the theming. Generally you could say that the first layer, the modules/core is the generation/fetching of data, while the 2nd is the presentation of that data. What you are doing is fetching data in the presentation layer, which really should be avoided. This is also the reason why you had so much trouble tracking down the cause, because of the confusion of what is getting the data and what is presenting it. What you did is also very much a waste of resource, I'll come to that later, but first what happened?
You have taken over a site, which probably have a custom theme, and I can tell that it has been made in an hacky way. Maybe the one who did it, didn't know the proper way but made something that “works”. Now what trying to alter it, you broke it. When Drupal presents a node (a node is a piece of content), it gets a lot of data, modules can hook in and add, alter or delete that data, and in the end the data gets to the template (all template files are denoted tpl.php - that is unless a different template engine is used). The way this works, is that it uses the “page” template to create the basics of the site, the navigation, the different regions ect. Now when displaying a list of nodes, each node will be displayed within the page template by having it's data outputted to the node template. Normally there's a lot of divs ect. combined with some php printing of data. In your example a function was also called. In some cases this can be fine, if you use fx translate functions for multi lingual sites or a simple function that checks something for you. However in your case you used that function to get data. By looking at the SQL you created it seems like you actually was trying to get the list of blog nodes you wanted to show. This could kind of work if only a single node was displayed, but when a list of nodes are displayed, you run the SQL and print the result for every node listed which is what got you in this mess. This is also very ineffective, as you run the query each time the node template is used. As you can see, it's very confusing and hard to control fetching data in the theming layer. But how do you do it then?
There are some different ways to do things kind of things, there are even made modules for this. Now it seems you want to display a list of blog nodes based on 2 CCK date fields.
The easy non coding way:
Simply create a view, using the views module. You can select nodes of type blog and filter based and the current data and the date on the cck fields. You can choose different displays. Showing either the full node or only part of the node, list, table ect. Lastly you select an URL for the view and you're done.
The harder coding way:
Create a custom module. First you need to implement hook_menu() to create a menu item which is how you setup the URL. Doing that you assign a function that you must create for that URL. In it you put much of the above code, fetching the data with SQL, however you will also need to run that data through various theming functions that will generate the markup and lastly you return the data. This is actually quite easy to do, if you know how Drupal works. If not, it will be hard to do this properly as you will need to call a lot of functions you don't know, and implement hooks ect.
This ended up being a bit longer than I planed, but I hope it helps you out with your new Drupal site.
Edit:
It actually looks like the SQL you posted is the SQL generated from a view that looks to be working. The only flaw is that you ask for both date fields to be greater or equal to now. CCK fields can have a default value but I believe you can always edit it to whatever you like when you edit the node, unless the node form has been edited to hide the fields. Also there wouldn't be any reason to use a CCK date field for the publish date. That information is available on every node along with last edited date.
You can find a lot of good stuff at Lullabot. They have made a lot of stuff on how to use CCK and views. Some of it they sell and some of it you can get for free. In your example, the difficult part is getting the nodes you want. To do that you need to add filters. When you want to sort by any date, you need to add a date filter located in the date group. In it you can check the fields you want to use. However in your case you want to add the date filter twice one for each of the date fields, as you have different values for the fields. This is probably where your flaw is and what is giving you problems.
Just to clarify my comment, it should look something like this:
function getData(){
$sql='my sql query';
results =db_query($sql);
$return_string = '' ;
while ($data = db_fetch_array($results)) {
//Loop through data and save to $db_data
$return_string .= $db_data;
}
return $return_string;
}
It sounds like you're on the right track with calling this function from within page.tpl.php; note that you can have it display only on specific pages by conditionally invoking it for specific values of $node->nid:
<?php if ($node->nid == xxx || $node->nid == yyy) print getData() ;?>
If you're using CCK and displaying the results of your function for specific content types only, Contemplate is a good module, esp. for beginning Drupalers, that makes some of this easier.
Well, to start, you shouldn't use echo, since it will print when the code is run (e.g. at the top of the page while it's loading) rather than into the variables that the template displays at the appropriate spots in the page. (This isn't to say that echo won't ever work, but using it isn't best practice.)
What did the previous function use to output the data? (There might be a page named something like abc.tpl.php (if your function is named abc) that will help you find the appropriate variable names.
If you add the SQL strings you were using, I might be able to diagnose that issue as well.
EDIT:
Assuming, based on your earlier comment, that you are trying to format a blog node (I base this on your mentioning the lack of a node-blog.tpl.php):
Drupal's assumptions, when rendering a page, go something like this (simplified):
Load the core. Grab the content from the database. Get the taxonomy and other goodies, and make these available to the modules and themes
Then, look in all the modules to see
if they have hooks that, based on
their function name, will modify the
page. If they do, run the functions.
If they don't, leave the page alone.
Then, look in all the theme to see
if template.php have hooks that,
based on their function name, will
modify the page. If they do, run the
functions. If they don't, leave the
page alone.
Last, look at the tpl.php files and display the page using those. If there's no tpl.php file with the right file name, then load it using node.tpl.php
A good summary of all that is at http://drupal.org/node/173880
If you have no functions in template.php that look like the would modify the page, and you have no tpl.php files that match the node you're looking for, that means that all your pages are being loaded using the default template.
(This is probably why your predecessor set up the strange construction that he did. Using a function like that is a kinda hacky way to do what Drupal can do automatically through the theme functions)
So:
Go ahead and make the tpl.php file. Call it node-blog.tpl.php if your content type is a blog node, or something else. You can probably just copy the existing tpl.php files for now. Then, create a preprocess function in template.php to go along with it.
(You will need to rebuild the theme registry for Drupal to recognize the changes -- you already have the Devel module installed, so it should be easy from there. Visiting /admin/build/modules on your site will work as well.)
Then, visit http://drupal.org/node/223430 and http://drupal.org/node/337022 for some quick explanations and code snippets that will let you pass your data as a variable, that the template can then render on your pages
One Last Edit:
By any chance, does this function build a list of blog posts, and present the information in summary form (e.g. a list of pending posts)?
I ask because if so, the Views module can probably do all of this work for you. Unless the data processing in function abc() is really, really, fancy, this seems like just the sort of thing that Views was built for.
While template.php is used for overriding various theme functions it can also be used to simply store functions that are called on your templates (you can also force template.php to be available in a custom module depending on how hacky the site was done by the original developer(s)). So just because a function is in template.php does not automatically assume it is a theme override (if you can provide he actual name for the function it would help to determine if it is though).
And the reason taking your code out of the function but leaving it in template.php causes the output on every page is because template.php is included in every page. Theoretically you can put more than just functions in template.php. On a large site I worked on one of the developers broke up the functions into a couple smaller files so template.php was just 2 or 3 functions and 3 or 4 include()'s.
Knowing the actual name of the function would really help determine if this is a custom function or a theme override.
To answer a few questions you have raised:
The previous function was doing this:
function abc($node,$submitted,$node_url) {
echo $node->taxonomy['color'];
$a = explode(",",$submitted);
$b = explode("-",$a[1]);
// THIS IS THE DESCRIPTION
if(strlen($node->content['body']['#value'])>180)
{
$c = str_split($node->content['body']['#value'],180);
$d = $c[0]."...";
}
else{
$d = $node->content['body']['#value'];
}
$multiple = $node->field_mul_event[0]['view'];
$eventcode = $node->field_event_code[0]['value'];
$strdata="";
$strdata.="specific markup to output here";
return $strdata;
}
This functionjust pulled out a start and end date and a description
The sql string in my code is:
select DISTINCT node.nid AS nid, node.title AS node_title,
content_type_blog.field_date_from_value AS node_data_field_date_from_field_date_from_value,
DATE_FORMAT(content_type_blog.field_date_from_value, '%%d/%%m/%%Y') AS dateFrom,
content_type_blog.field_date_from_value2 AS node_data_field_date_from_field_date_from_value2,
content_type_blog.nid AS node_data_field_date_from_nid,
field_mul_event_value AS multiEvent,
field_event_code_value AS eventCode,
node.type AS node_type,
content_type_blog.field_event_excerpt_value AS node_data_field_date_from_field_event_excerpt_value,
image_attach.iid AS image_attach_iid,
node_images.filepath AS imagePath,
color AS catColour
FROM node
node LEFT JOIN content_type_blog content_type_blog ON node.vid = content_type_blog.vid
LEFT JOIN image_attach image_attach ON node.nid = image_attach.nid
LEFT JOIN node_images node_images ON node.nid = node_images.nid
LEFT JOIN term_node term_node ON node.nid = term_node.nid
LEFT JOIN term_data term_data ON term_node.tid = term_data.tid
WHERE node.type LIKE 'blog' AND content_type_blog.field_date_from_value >= DATE(NOW()) AND content_type_blog.field_date_from_value2 >= DATE(NOW())
ORDER BY content_type_blog.field_date_from_value ASC
As I am sure you can tell, this sql grabs all the same data (and some extra info) except data older than todays date and then orders it in date order.
I have taken a look in the theme folder and there are two tpl.php files with the same code in them:
<?php print $fields['title']->content; ?>
<?php print $fields['introduction']->content; ?>
I cannot see any custom modules as such in sites/all/modules. This is the list in there (but they all seem like inherent modules to me):
cck
date
devel
extlink
fckeditor
image
imce
menu_breadcrumb
nice_menus
node_images
pathauto
sections
swftools
token
views
wysiwyg
Excuse my ignorance - but I am learning drupal as I go along. More of a wordpress gal usually if you know what I mean. Not used to nodes/taxonomy/the drupal system and the like which is my base excuse for my lack of knowledge.
I need to find that function and determine what it does - gah!!!
Thanks everyone!
Ok had a look about using the theme developer:
Parents: theme_taxonomy_term_page < page.tpl.php
Template called:
node.tpl.php
File used:
modules/node/node.tpl.php
Candidate template files:
node-blog.tpl.php < node.tpl.php
Preprocess functions:
template_preprocess + template_preprocess_node + content_preprocess_node + nodereference_preprocess_node + views_preprocess_node
Duration: 6.84 ms
Look in here modules/node/node.tpl.php and found references to abc function
<?php print abc($node,$submitted,$node_url); ?>
Can't find node-blog.tpl.php and can't find any references to functions template_preprocess + template_preprocess_node + content_preprocess_node + nodereference_preprocess_node + views_preprocess_node
Stumped.
A very good start to see what's going on with the theme hooks and template files is the devel module. Enabling it and going to the site and enabling the "Theme Developer" module will get you a little widgety thing in the bottom left part of your pages, where you can check a box and then click on any element on the page - and it will show you what it is executing, why, and what else it could be executing.
Could be a start.