Skip to content

Instantly share code, notes, and snippets.

View yonseo's full-sized avatar

yonseo

View GitHub Profile
//Fuel PHP 1.1.8 Pagination example
//echo $pagination in the view
//
public function action_index()
{
//pagination
$config = array(
'pagination_url' => 'comic/index/',
'total_items' => 10,
'per_page' => 5,
@yonseo
yonseo / upload.php
Last active March 2, 2018 22:43
upload php
<html>
<body>
<form action="upload.php" method="POST" enctype="multipart/form-data">
<legend>upload image:</legend>
<label for="photo">Filename:</label>
<input type="file" name="photo"/>
<input type="submit" name="upload" value="upload"/>
</form>
</body>
</html>