• Home
  • About
    • PI photo

      PI

      Beginner's Blog

    • Learn More
    • Github
  • Posts
    • All Posts
    • All Tags
    • All Categories
  • Projects

[PHP] PHP Import

📆 Created: 2024.10.23 Wed

🗓️ Updated: 2025.02.25 Tue

Reading time ~1 minute

외부 PHP 코드 import 하기

외부 php import 하기

require_once('login_func.php');

function login1($userid, $userpass) {
    $crew_id = "admin";
    $crew_ps = "admin1234";

    if ($userid == $crew_id and $userpass == $crew_ps) {
        return $userid;
    }
    else return 0;
}


WEBTIL Share Tweet +1
/#disqus_thread