Featured post

c# - Usage of Server Side Controls in MVC Frame work -

i using asp.net 4.0 , mvc 2.0 web application. project requiremrnt have use server side control in application not possibl in noraml case. ideally want use adrotator control , datalist control. i saw few samples , references in codepleax mvc controllib howwver found less useful. can tell how utilize theese controls in asp.net application along mvc. note: please provide functionalities related adrotator , datalist controls not equivalent functionalities thanks in advace. mvc pages not use normal .net solution makes use of normal .net components impossible. a normal .net page use event driven solution call different methods service side mvc use actions , view completly different way handle things. also, mvc not use viewstate normal .net controlls require. found article discussing mixing of normal .net , mvc.

php - Include functions -


edit due overwhelming amount of advice have received, have fixed problem. (after realizing horrible php code had written.) :d

thanks all!

is there reason function inside included php file won't work on parent page? have 2 functions inside php file included @ top of page. however, when try call function, doesn't anything. here's basic layout:

main page:

<?php include 'includes/header.php'; ?> <?php getposts();?> <div>some html code</div> <?php endposts(); ?> 

header.php

function getposts() { $result = mysql_query("select * posts order id desc") or die(mysql_error());        while($row = mysql_fetch_array($result)) { }; function endposts() { } /*end while statement */ }; 

any idea why won't work? i'm getting blank white screen right now.

that code so not valid. why declaring function inside of function? , there aren't supposed semicolons on end of function declarations/loops. first thing enable error reporting.


Comments

Popular posts from this blog

c# - Usage of Server Side Controls in MVC Frame work -

cocoa - Nesting arrays into NSDictionary object (Objective-C) -

ios - Very simple iPhone App crashes on UILabel settext -