What to do if php cannot load js css
Solutions for php unable to load js css: 1. Check whether the loaded path is correct; 2. Forbid the use of absolute paths; 3. Use relative paths to load files.
The operating environment of this article: windows7 system, PHP7.1 version, DELL G3 computer
What should I do if php cannot load js css?
Solution to the problem that php cannot load js css:
1. The path must be absolutely correct. Based on the location of the js and css files after the project, the path must be Absolute path
(For example, the project location is under D://studys/aa/bb, the project name is cc, and the js file path is D://studys/aa/bb/cc/public/js/ dd.js, then the loading path should be aa/public/js/dd.js)
2. Do not use absolute paths! ! Don't use absolute paths! ! Don't use absolute paths! !
(Because the absolute path is used, after the file is placed on another computer, the js and css files cannot be loaded because the system disk where we store the php file is very likely to be different)
3. When we use relative paths, we must be good at using the global variable $_SERVER to obtain them. Generally, dirname($_SERVER['SCRIPT_NAME']) is used to load these files
($_SERVER[' SCRIPT_NAME'] obtains the relative position of the inde.php entry file, where dirname() refers to the previous path relative to inde.php)
atic for $_SERVER['SCRIPT_NAME'] ulatetaining the relative position of the inde.php entry file, where dirname() refers to the previous path relative to inde.php (for example, the result obtained by $_SERVER['SCRIPT_NAME'] is: aa/bb/cc/index.php, then the result of dirname($_SERVER['SCRIPT_NAME'] is: aa/bb/cc. This result generally intercepts the frame name position - the final position of Index.php is in the frame Folder)
##
Recommended learning: "###PHP Video Tutorial###"###The above is the detailed content of What to do if php cannot load js css. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Using Bootstrap in Vue.js is divided into five steps: Install Bootstrap. Import Bootstrap in main.js. Use the Bootstrap component directly in the template. Optional: Custom style. Optional: Use plug-ins.

HTML defines the web structure, CSS is responsible for style and layout, and JavaScript gives dynamic interaction. The three perform their duties in web development and jointly build a colorful website.

There are two ways to create a Bootstrap split line: using the tag, which creates a horizontal split line. Use the CSS border property to create custom style split lines.

WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

There are several ways to insert images in Bootstrap: insert images directly, using the HTML img tag. With the Bootstrap image component, you can provide responsive images and more styles. Set the image size, use the img-fluid class to make the image adaptable. Set the border, using the img-bordered class. Set the rounded corners and use the img-rounded class. Set the shadow, use the shadow class. Resize and position the image, using CSS style. Using the background image, use the background-image CSS property.

To adjust the size of elements in Bootstrap, you can use the dimension class, which includes: adjusting width: .col-, .w-, .mw-adjust height: .h-, .min-h-, .max-h-

To set up the Bootstrap framework, you need to follow these steps: 1. Reference the Bootstrap file via CDN; 2. Download and host the file on your own server; 3. Include the Bootstrap file in HTML; 4. Compile Sass/Less as needed; 5. Import a custom file (optional). Once setup is complete, you can use Bootstrap's grid systems, components, and styles to create responsive websites and applications.

How to use the Bootstrap button? Introduce Bootstrap CSS to create button elements and add Bootstrap button class to add button text
