Welcome Guest, Not a member yet? Register   Sign In
How to print
#1

I am new to CodeIgniter. Can someone tell me how to print in CI?
Thank you
Reply
#2

I asked the question in Google. Here is the first response:

https://www.binaryboxtuts.com/php-tutori...igniter-4/
Reply
#3

PHP Jasper Reports is the best solution for this.

PHPJasper
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply
#4

(This post was last modified: 09-13-2023, 05:27 AM by xgecemx.)

Hey there! Welcome to the CodeIgniter community! ?

Printing in CodeIgniter, or in PHP in general, can be achieved using the echo statement. If you want to print a specific string or variable, you can use:

echo "Your text or message here";

However, if you're referring to debugging and you wish to print out an array or object to view its structure, you might want to use:

echo "<pre>";
print_r($your_array_or_object);
echo "</pre>";

The <pre> tags will format the output in a more readable manner.

Load the text helper and use print_r():

<!---->

$this->load->helper('text');

The output class is useful for setting headers, cookies, caching, and other output config. But for simple printing, plain old echo or print work great.

Let me know if you have any other CodeIgniter questions! The documentation is fantastic, so always good to refer to that as well. Welcome to CI!

[font=Söhne, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Ubuntu, Cantarell, 'Noto Sans', sans-serif, 'Helvetica Neue', Arial, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji']A "printable calendar 2024" refers to a calendar format that you can easily print out on paper. It's a digital or online calendar that you can download and then print using a regular printer. These printable calendars are typically available in various formats, such as PDF, Word, Excel, or image files, making it convenient for people to have a physical copy of a calendar for a specific year.[/font]


print_r('Hello World!');
Reply




Theme © iAndrew 2016 - Forum software by © MyBB