Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 Programming Discussions

Reply
 
Thread Tools Display Modes
  #1  
Old 08-09-2008, 03:08 AM
veenuisthebest's Avatar
veenuisthebest veenuisthebest is offline
 
Join Date: Mar 2008
Location: India
Posts: 1,416
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Looping templates help

I have referred to this and this

Now, in my PHP file, I have this:-

PHP Code:
$query=$db->query_read("SELECT * FROM " TABLE_PREFIX "mytable ORDER BY `uid` DESC LIMIT " . ($limitlower 1) . ", $perpage");
while (
$result $db->fetch_array($query))
{
$row_id=$result['uid'];
$row_name=$result['name'];

foreach (
$result as $key => $value)
{
eval(
'$maindata .= "' fetch_template('loopy_template') . '";');
}} 

I have simply copied the foreach part from the above mentioned links.

What arguments I need to pass to foreach and how ? Do I need to do something before it also ? Please guide me on how to correct the above code.

Thank You
Reply With Quote
  #2  
Old 08-09-2008, 04:09 AM
RLShare RLShare is offline
 
Join Date: Jun 2008
Posts: 499
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

<a href="http://us3.php.net/foreach" target="_blank">http://us3.php.net/foreach</a>
Reply With Quote
  #3  
Old 08-09-2008, 07:21 AM
Opserty Opserty is offline
 
Join Date: Apr 2007
Posts: 4,103
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You don't need foreach... unless you are fetching an array from the database.
PHP Code:
$query=$db->query_read("SELECT * FROM " TABLE_PREFIX "mytable ORDER BY `uid` DESC LIMIT " . ($limitlower 1) . ", $perpage");
while (
$result $db->fetch_array($query))
{
$row_id $result['uid'];
$row_name $result['name'];

eval(
'$maindata .= "' fetch_template('loopy_template') . '";');

Should work just fine, use $row_id and $row_name in your template. You don't even need those you can just use: $result[uid] or $result[name] directly...
Reply With Quote
  #4  
Old 08-09-2008, 07:53 AM
veenuisthebest's Avatar
veenuisthebest veenuisthebest is offline
 
Join Date: Mar 2008
Location: India
Posts: 1,416
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

yes thanks opserty, I had figured it out earlier with the help of the link in post 2.

can you please tell me:-

Say I have a vbpage called mypage.php , and I have 2 subpages in it called mypage.php?do=this and mypage.php?do=that. So, in total there are 3 associated templates (1 for main page and 2 for subpages).

Now, whenever I visit the subpages I notice that the queries executed in the main page are also being executed in the sub-pages, and the template of the main page is also being used/called unnecessarily in sub-pages (I see this from debug info). BUT its not vice-versa. How should I resolve this ?

Thank you
Reply With Quote
  #5  
Old 08-09-2008, 06:44 PM
Guest190829
Guest
 
Posts: n/a
Default

It is probably the way you have written your conditions, make sure you have a default condition if the request string is empty.

PHP Code:
if(empty($_REQUEST['do'])) 
{
     
# Go to a default catch all
     
$_REQUEST['do'] = 'main';
}

if(
$_REQUEST['do'] == 'main') {
  
// Main page code
}

if(
$_REQUEST['do'] == 'sub1') {
  
// sub page 1 code...

}


// etc...etc... 
Reply With Quote
  #6  
Old 08-10-2008, 02:44 AM
veenuisthebest's Avatar
veenuisthebest veenuisthebest is offline
 
Join Date: Mar 2008
Location: India
Posts: 1,416
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

oh wow, thanks danny ! it worked great. Yes, I did not had a default condition if the request string was empty.

alright one more thing plz...

How do I append a variable to a URL from within PHP?
see I have this code:-

PHP Code:
if ($_REQUEST['do'] == 'search')
{
$category=$_REQUEST["cat"];
$order=$_REQUEST["order"];

$category and $order contains the values posted by the form via post method. I want that these values should append to URL like this "page.php?do=search&amp;cat=$category&amp;order=$or der".

Currently it does not show the values in the URL (its blank like cat=), but on echo the variable does throw the correct values.

Thank You
Reply With Quote
  #7  
Old 08-10-2008, 02:49 AM
RLShare RLShare is offline
 
Join Date: Jun 2008
Posts: 499
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

First try concatenating the string...ex... "?do=search&cat=".$category."&"
Also use the URLencode function before you combine the string to form the url
http://us3.php.net/urlencode
Reply With Quote
  #8  
Old 08-10-2008, 03:46 AM
veenuisthebest's Avatar
veenuisthebest veenuisthebest is offline
 
Join Date: Mar 2008
Location: India
Posts: 1,416
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

where do I put this line "?do=search&cat=".$category."&" in the php code above ?? How to append to URL ?
Reply With Quote
  #9  
Old 08-10-2008, 06:24 AM
Dismounted's Avatar
Dismounted Dismounted is offline
 
Join Date: Jun 2005
Location: Melbourne, Australia
Posts: 15,047
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

On the code for the link to the page - it needs to have the variables in the URL there.
Reply With Quote
  #10  
Old 08-11-2008, 01:13 AM
veenuisthebest's Avatar
veenuisthebest veenuisthebest is offline
 
Join Date: Mar 2008
Location: India
Posts: 1,416
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

sorry I don't understand stilll ..

see I have a form (in template) whose action is "page.php?do=search" via post method. On hitting Submit button it simply goes to the below code, executes the query and all, and results fine.

PHP Code:
if ($_REQUEST['do'] == 'search')
{
$category=$_REQUEST["cat"];
$order=$_REQUEST["order"];


Now, my problem is that the URL of the results page displays page.php?do=search and NOT appending the variables, how do I do it ??? how do i append $category and $order values to it ??

Thank You
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 11:25 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.07105 seconds
  • Memory Usage 2,256KB
  • Queries Executed 13 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (5)bbcode_php
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (9)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete