Category Tech & Tutorials

How to reduse Blog Post Size in WordPress on Frontpage?

First You Know What is Main Contents in Post Coding

  1. the_post()
  2. the_excerpt() Source

Replace Code “the_post()” by the_excerpt() in “……..” in Them File Editor.

How to exit from Burning Mode in Compaq S2021A Monitor?
How to exit from Burning Mode in Compaq S2021A Monitor?

(100% Solved)

I accidentally put it on DVI mode in the monitor settings. So I pressed some buttons on it to reset it. But the monitor is now only blinking colors like red, white, black and gold. how to exit blinking, i pressed the button many times but not working, Motherboard L9372-1N/48.7E203.01 Interface bd l9137-1m

burning mode

First You know why this problem has come.

Two functions have been given by the company to source the monitor, first automatic and second manual. And there are two source options available in Moniot one is VGA and the other is DVI. If you connect cable to any source by keeping it in auto mode, then automatically you will not have any problem in connecting any cable. But when you put the monitor in manual mode and select the DVI source and connect the VGA cable to the port instead of DVI, you will automatically get the problem of colorblinking (burning mode).

How to solve this problem ? 100% Verified Answer

First you need DVI (input to moniter) cable

In my case i bought this HDMI (Female) TO DVI (Male) wire from Amazon.

  1. Connect HDMI cable in output source in Laptop or cpu
  2. Then connect HDMI TO DVI cable to HDMI Cable Female Side
  3. Then connect HDMI TO DVI to with DVI Port Side monior
display color blinking
Direct LInk :- HDMI TO DVI

In your case according to your cpu output port or other output source you can buy vga to dvi, hdmi (male) to dvi (male), dp to dvi, …. other convertion cable other port to dvi. use this cable from VGA To DVI .

Your Problem will be solv 10000%…. if yur probles was solved then comment here for congrtulations

Thank reading This Post. Hope Your Monitor Burning Mode Problem Solved

Suggest to Monitor Companies Please make hard Reset Button On Backside of LCD Pannel, will everything can rest

Thanks…

How to Print Input Type In PHP

Use This Code To Type and Print or echo input value In PHP

<form action="" method="post">
<input type="text" name="nm">
<input type="submit" name="sub">
</form>
<?php
if (isset($_POST['sub']))
{
echo $_POST['nm'];
}
?>