Creating physical or digital books from the app user’s photos, including exporting photos for printing....
閱讀內文<?php // https://github.com/ktamas77/firebase-php require './vendor/autoload.php'; use Firebase\FirebaseLib; const URL = 'https://your-firebase-account.firebaseio.com/'; const TOKEN = 'your-firebase-token';...
閱讀內文sudo mysql -u root -p // MYSQL Command SET PASSWORD FOR 'db_user_name_here'@'localhost' = PASSWORD('db_new_password_here'); FLUSH...
閱讀內文// RESET WP_HOME BY SQL COMMAND update wp_options set option_value='https://www.imnobby.com' where option_name='home'; update wp_options set...
閱讀內文<?php $date_after = strtotime("-1 day"); $date_after = strtotime("-1 week"); $date_after = strtotime("-2 weeks"); $date_after =...
閱讀內文SELECT DATE_FORMAT(`INVOICE_DATE`, '%Y-%m') AS Month, SUM(TOTAL_COST), SUM(TOTAL_PROFIT), SUM(TOTAL_PROFIT) - SUM(TOTAL_COST) AS Profit FROM `invoice_table` WHERE...
閱讀內文<?php $valid_passwords = array ("username_one" => "password_one", "username_two" => "password_two"); $valid_users = array_keys($valid_passwords); $user =...
閱讀內文When you see any of these file names in the list below in your server,...
閱讀內文<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>HTML PDF Fixed Pixels...
閱讀內文<?php ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL); require 'vendor/autoload.php'; use Knp\Snappy\Pdf; $snappy = new Pdf('C:\"Program Files"\wkhtmltopdf\bin\wkhtmltopdf.exe');…
閱讀內文<?php function do_stage($attr){ $tmphtml = ''; // $tmphtml .= $attr["id"]; $tmphtml .= '<!-- html2canvas.js Library...
閱讀內文<?php function ajax_get_remote_image(){ // Endpoint: /wp-admin/admin-ajax.php?action=ajax_get_remote_image&q= $tmphtml = ''; if ( !isset($_GET["q"]) ) exit; $url...
閱讀內文<?php function imnobby_redirect_attachment_page() { if ( is_attachment() ) { global $post; if ( $post &&...
閱讀內文<?php function imnobby_translate_ninja_forms_my_list( $data, $field_id ){ // Label Change //$data['label'] = __($data['label']); // Default Value...
閱讀內文<?php echo do_shortcode('[ninja_forms id=1]'); $tmphtml = ""; if ($_SERVER['REQUEST_METHOD'] === 'POST') { $ninja_form_id = $_POST["_form_id"];...
閱讀內文<?php $post_array = array("name" => "imnobby", "year" => 2022); $url = "https://www.imnobby.com/"; echo imnobby_simple_http_curl($url); //...
閱讀內文function limit_user_file_upload_size( $size ) { // Set the upload size limit to 10 MB for...
閱讀內文<form id="htmlForm1" action="https://www.imnobby.com/" method="POST"> <div class="mb-3"> <label for="formName" class="form-label">Name</label> <input type="text" class="form-control" name="Name"…
閱讀內文<?php // WordPress $items_per_page = 10; $page = isset( $_GET['cpage'] ) ? abs( (int) $_GET['cpage']...
閱讀內文<?php // JSON String to JSON Array $json_array = json_decode($json, true); // Remove an field...
閱讀內文