Why Figma Is The Future Of Product Design?

Cursus iaculis etiam in

Cursus iaculis etiam in In nullam donec sem sed consequat scelerisque nibh amet, massa egestas risus, gravida vel amet, imperdiet volutpat.

Audio to Text Punjabi
Augmented reality vs virtual reality in UX .

Cursus iaculis etiam in

Cursus iaculis etiam in In nullam donec sem sed consequat scelerisque nibh amet, massa egestas risus, gravida vel amet, imperdiet volutpat.

What to do when you’re facing designer

Cursus iaculis etiam in

In nullam donec sem sed consequat scelerisque nibh amet, massa egestas risus, gravida vel amet, imperdiet volutpat rutrum sociis quis velit, commodo enim aliquet.

Nunc volutpat tortor libero at augue mattis neque, suspendisse aenean praesent sit habitant laoreet felis lorem nibh diam faucibus viverra penatibus donec etiam sem consectetur vestibulum purus non arcu suspendisse ac nibh tortor, eget elementum lacus, libero sem viverra elementum.

5 signs your design strategy needs rethinking

Cursus iaculis etiam in

Cursus iaculis etiam in In nullam donec sem sed consequat scelerisque nibh amet, massa egestas risus, gravida vel amet, imperdiet volutpat.

ContactForm in WordPress without Plugin

How to Create Contact Us Form In WordPress Without Pluggins?

How to receive email on Direct on your Email inbox

Here is Step by Step Tutorial and Source Code Free to Use.

Step 1

Open File Manager in Your Website (if You have not Installed File Manager in Your Website, go to Plugins to Download and install File Manager In WordPress, You can Also Explore WordPress Files By Your Hosting Provider Control Pannel)

Create a New Folder and also Create a New PHP File inside New Folder.

Sample :- File Name : "Conatct.php", Folder Name "contact", Location : "public_html/conatct/contact.php"

(Note :- This is sample only. You can use diffrent PHP File Name and Folder Name and File locations.)

Step 2

Copy this PHP Code and Paste it to inside PHP File by Edit File Right Clicking on PHP File, Then Edit By Highlighted Text Inside Code Then Save It.


<?php
$conPage='https://youwebsite.com/contact/'; //Add Your website contact page url,

$domNam=str_replace('www.','',$_SERVER['SERVER_NAME']);
$refEr=$_SERVER['HTTP_REFERER'];

if($conPage==$refEr){ // validate get only data from your mention website url;

$parameter = $_SERVER['QUERY_STRING'];
$idArray = explode('&',$parameter);
?><?php

$to = 'your@email.com'; //Change to Your Email Address, Where You Receive Contact Emails;

$subject = "Contact - $domNam";

$from = 'your@website.com'; //Change to Your Source Email Address, receiving Emails From This Email Address;
 
$headers  = 'MIME-Version: 1.0' . "\r\n";  // To send HTML mail, the Content-type header must be set
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
 // Create email headers
$headers .= "From: '$domNam' ".$from."\r\n".
    'Reply-To: '.$from."\r\n" .
    'X-Mailer: PHP/' . phpversion();
 
// Custome html form fiels visible into your email
$message = '<table width="690" cellspacing="0" cellpadding="0" border="0" align="center"><tbody><tr><td bgcolor="#F0F0F0">
<table width="640" cellspacing="0" cellpadding="0" border="0" align="center">
<tbody><tr><td height="16"></td></tr><tr>
<td style="font-family: arial,Arial,sans-serif;text-transform:uppercase;font-size: 25px;">
<b>'.str_replace('www.','',$_SERVER['SERVER_NAME']).'</b></td></tr><tr><td height="16"></td></tr>'; ?>
<?php
 foreach ($idArray as $index => $avPair) { list($ignore, $value) = explode("=", $avPair); $id[$index] = $value;  $message .='
<tr>
<td align="left" bgcolor="#FFFFFF"><div style="border-style:solid;border-width:1px;border-color:#cccccc;    margin-bottom: -1px;">
<table width="625" cellspacing="0" cellpadding="0" border="0" align="center"><tbody><tr><td height="15" colspan="3"></td>
</tr><tr><td width="15"></td><td width="600"><div style="font-family:arial,Arial,sans-serif"><table cellspacing="0" cellpadding="0" border="0">
<tbody><tr><td width="100" style="color:#787878;text-transform: capitalize;font-size:13px;"><b>'. str_replace('-',' ',$ignore).': </b>
</td><td width="15"></td><td><div style="color:#929292;line-height:24px;font-size: 14px;">'. urldecode(str_replace('+',' ',$id[$index])).'
</div></td></tr></tbody></table></div></td><td width="15"></td></tr><tr><td height="15" colspan="3"></td></tr></tbody></table>
</div></td></tr>'; } ?><?php
$message .= '<tr><td height="16"></td></tr><tr><td align="left"><table cellspacing="0" cellpadding="0" border="0" align="center">
<tbody><tr><td width="498"><div style="font-family:arial,Arial,sans-serif;font-size:11px;color:#999999;line-height:13px;text-align: center;"> ©  '.date('Y').' Developed by <a style="color: #999999;text-decoration: none;" href="https://shrimuktsarsahib.com/" target="_blank">PB INDIA</a></div>
</td></tr></tbody></table></td></tr><tr><td height="22"></td></tr></tbody></table></td></tr></tbody></table>';

 if(mail($to, $subject, $message, $headers)){
//echo '<h2 style="font-family: system-ui;"><b>Your Message was Sent Successfully</h2>';
echo"<br>";
echo "<p style='text-align: center;font-family: system-ui;'>Your Message was Sent Successfully</p>";
header( 'refresh:1;url='.$_SERVER["HTTP_REFERER"] );
 }
 else  { echo 'Error Unable to send message. Please try again.';  header( 'refresh:1;url='.$_SERVER["HTTP_REFERER"] );
}
?><?php } else {echo "<p>Sorry, You are not allowed to access this page!</p>";  exit(); } ?>

Step 3

Create a Contact Page in WordPress Website. Edit this Page add “Custom html” by Searching html in Post Creation Tools

Copy This Code and Paste it to your New Contact Page with Custome HTML Blog


<!DOCTYPE html>
<html lang="en">
<body>
    <form action="https://yourwebsite.com/folder/contact.php" method="get"> //change php file link here
        <p><label><span><input type="text" name="your-name" value="" size="40" required="required"
                        placeholder="Name"></span></label></p>
        <p><label><span><input type="text" name="your-email" value="" size="40" required="required"
                        placeholder="Enter Your Email"></span></label></p>
        <p><label><span><input type="text" name="your-message" aria-invalid="false" size="40"
                        style="border: radius 50px" placeholder="Enter Message Here"></label></p>
        <p><button class="btn" type="submit">Submit</button></p>
    </form>
</body>
</html>

Now You Can Check Your Contact Form was Successfully Work.

if facing any problem please comment only for contact form related comment. do not type other promotional comment here.

Thanks For Visite ❤

What is Meta Charsets In Unicodes

Meta Charsets in Simple Languages

Charsets are converter for unicode to binary to read computer our languages

“ISO-8859-8”

This charset working only for 256 (HTML4) character conversation unicode to binary

“UTF-8”

This Charset Supported in HTML5 more Than 10000 character support in worldwide languages to to convert unicode to banry language

What is “endif; in PHP

endif is a tag and starting from “:” and closing tag is “endif;”

(Note:- Here “” not Included in code”)

endif tag same work as “{” and “}”

Example

<?php
$a=20;
$b=10;
if ($a > $b) {
echo "a is greater<br>";
}
?>
<?php
$a=20;
$b=10;
if ($a > $b) :
echo "a is greater<br>";
endif;
?>

Both Code Are Same Work

When i use in “if contions” for Multiple {}

Then we use “: endif;” tag for one of whole code, we can type “{}” tags inside “endif” tag

Set Content in Squence at once in adobe After Effects
Live Youtube Stream with OBS Studio on low Configration PC

Problem

OBS Studio Streaming Good Speed in Green Sign but Youtube Displaying Stream Not Smooth, Input Video Source : Intensity Shuttle Card USB 3.0. , Software and Drivers Latest From “Desktop Video Setup V. 12.4”, OBS Studio Latest (V. 27…)

Dowload OBS Studio 23.1.0

How to Share Folders PC-to-PC without Wires

Sharing folders between PCs without a wired connection can be convenient for quick file transfers. Here’s a step-by-step guide to setting up wireless file sharing between two PCs.

  1. Easy Guide: Sharing Folders Between PCs Wirelessly
  2. How to Share Files Between Computers Without Cables
  3. Wireless File Sharing: Connect PC-to-PC Without Wires
  4. Step-by-Step: Share Folders Over Wi-Fi Without a Network Cable
  5. No Cables Needed! How to Share Folders Between Windows PCs Wirelessly
  6. File Sharing Made Easy: Connect PCs Without Wires
  7. How to Set Up Wireless Folder Sharing Between Two PCs
  8. Share Files Between Computers Without Ethernet Cables
  9. Wireless Folder Sharing Between PCs: A Beginner’s Guide
  10. Connecting PCs for File Sharing Without Wires or USB Drives
  11. How to Access Shared Folders on Another PC
  12. Step-by-Step: Access Files on Another Computer Over Wi-Fi
  13. Connect to Another PC’s Shared Folder Without Cables
  14. How to View and Access Files on a Networked Computer
  15. Easy Guide to Accessing Folders on Another Windows PC
  16. Access Files on Another Computer Over the Network
  17. How to Open Shared Folders on a Different PC
  18. Accessing Another PC’s Shared Files Over Wi-Fi
  19. How to Connect and Access Shared Folders on a Network
  20. Remote Access: How to Open Folders on Another Computer

Step 1: Enable Function Discovery Provider

  1. Open Services by searching in the Windows Start Menu.
  2. Find Function Discovery Provider Host, double-click on it, and set the startup type to Automatic (Delayed Start).
  3. Click Stop > Apply > Start > OK to apply the changes.

Step 2: Enable SMB 1.0/CIFS File Sharing

  1. Search for Turn Windows features on or off in the Windows Start Menu.
  2. Locate SMB 1.0/CIFS File Sharing Support, expand it, and check all the boxes.
  3. Click OK and wait for the installation to complete.

Step 3: Configure Advanced Sharing Settings

  1. Go to Control Panel > Network and Sharing Center > Advanced sharing settings.
  2. Under Private:
    • Turn on network discovery.
    • Turn on file and printer sharing.
    • Turn off password-protected sharing (if you want access without a password).
  3. Click Save changes.

Step 4: Set Network Profile to Private

  1. Click on the connected network (Wi-Fi or Ethernet).
  2. Go to Network profile and set it to Private.
  3. Go to Control Panel > Windows Defender Firewall > Allowed apps:
    • Make sure File and Printer Sharing and Network Discovery are allowed for the Private profile.

Step 5: Configure Folder Permissions

  1. Right-click on the folder you want to share, select Properties > Sharing > Advanced Sharing.
  2. Check Share this folder, then click Permissions.
  3. Add the user Everyone or the specific PC name to allow access.
  4. For folders on C drive, go to the Security tab, add the user, and give Full Control permissions.

Step 6: Enable Guest Access (If Prompted for a Password)

  1. Press Win + R, type gpedit.msc, and press Enter to open the Group Policy Editor.
  2. Navigate to Computer Configuration > Administrative Templates > Network > Lanman Workstation.
  3. Double-click on Enable insecure guest logons, set it to Enabled, and click OK.

Restart both PCs and try accessing the shared folder again. If you still see a password prompt, ensure all settings are applied as described.

⚠️ Warning

If your computer is on a large network, such as in a department or organization where multiple computers are connected to the same network, do not set folder permissions to “Everyone.” This could expose your files to anyone on the network.

However, if you’re on a Home, Small office, or a network where only trusted individuals have access, it’s generally safe to set permissions to “Everyone” for easier sharing.

Always ensure that you are aware of who has access to the network to keep your data secure.