How to place content in right place in codeigniter?
I have this code, and when I call the function with mydomain/index.php/blog everything works, but the content i.e “index” in this case is being displayed in the top of the page.
I want it to be displayed in the content area, that i have defined in my css. Whats the problem?
<?php
[...]
Proper use of Variable Scope in PHP
I’ve got a handful of variables that I need access to in more functions than I initially thought.
What would be the best way of including them in my growing list of functions?
I’ve got something like
$site = ‘a’;
$admin = ‘b’;
$dir = ‘c’;
$ma_plug = ‘d’;
$base = ‘e’;
//Etc.
I need almost all of those in a large handful of [...]
PHP returning less results than phpmyadmin even though the query is the same
When I run the following query in phpmyadmin, I get back 18 results – all of which are correct and what I’m looking for. However, when I copy & paste the query into a php file and run the page, I get back 17 results.
SELECT
ta.jobTaskID,
[...]
XPath Query starting guides
Do you know any good XPath Query resources/starting guides for beginners ?
Books / websites ..
No php manual/google answers pls.
sql while functions
function timeago($ptime) {
$etime = time() – $ptime;
if ($etime < 1) {
return ’0 seconds’;
}
$a = array( 12 * 30 * 24 * 60 * 60 => ‘year’,
[...]
secure php/mysql based application on localhost
I have an application based in php and mysql which is to be hosted on localhost at their organisation for some of my clients and on a web server for others. My concern is how can i protect and secure my code on localhost? i simply do not want any person with even a little [...]
echo in a method not working
I used http://www.webformgenerator.eu/ to generate a form and downloaded the code to my existing project.
Now after I press the submit button, nothing happens to the screen. I debugged and saw that submit is working and it is inserting to the db table as I programmed.
If the db insert is success, I want show [...]
I have this php/mysql/ajax code and I want to add a fade in effect when the record show up
I would like to add to this code, a fade in effect… Every time I create a new record, the code shows that to me, but I would like to add a fade in effect to it. thank you.
Here’s the code:
<?php
include(“includes/db.php”);
include(“includes/time_stamp.php”);
?>
<html>
<head>
<link rel=”stylesheet” href=”wtfdiary.css”>
<script type=”text/javascript” src=”jquery.min.js”></script>
<script type=”text/javascript” >
$(function() {
$(“#tweet_submit”).click(function()
{
var tweet = $(“#tweet”).val();
var dataString = ‘tweet=’+ [...]
PHP add to session with button
I’m creating a basic shopping cart script , located at php/cart.php, with a GET for “action” and a switch for it that either adds or removes a variable from the $_SESSION, or unsets it altogether. What’s the easiest way to create a button that, when clicked, uses this script to manage the session items?
Also would [...]
Error Code 0 in edit form jquery grid
i am a newbie with php and im trying to use jquery grid, with the form edit, and delete.
I am implementing the edit , it is appearing – error Status: ‘error’. Error code: 0 ,when i press the submit button ,the error apears but the changes are made…
my grid…
<script>
var lastsel;
$(function() [...]















