Jump to content

trilok

Members
  • Posts

    8
  • Joined

  • Last visited

trilok's Achievements

Newbie

Newbie (1/7)

2

Reputation

  1. trilok

    set cookies..

    Please tell me how to set cookies ?
  2. HyperText Transfer Protocol (HTTP) and HyperText Transfer Protocol Secure (HTTPS) HTTPS is a secure communications channel that is used to exchange information between a client computer and a server. It uses Secure Sockets Layer (SSL). This article describes how to configure the SSL/HTTPS service in Internet Information Services (IIS) and compares this process to the similar process in Apache......
  3. As w3schools is begginers and pros you should also give some some typicall examples...
  4. The following items are assumed: You have access to login as the ‘root’ MySQL user Getting your IP address.. You will need to know what the IP address you are connecting from. Granting access to a user from a remote host is fairly simple and can be accomplished from just a few steps. First you will need to login to your MySQL server as the root user. You can do this by typing the following command: # mysql -u root -p Once you are logged into MySQL you need to issue the GRANT command that will enable access for your remote user. In this example we will be creating a brand new user (fooUser) that will have full access to thefooDatabase database. Keep in mind that this statement is not complete and will need some items changed. Please change 1.2.3.4to the IP address that we obtained above. You will also need to change my_password with the password that you would like to use for fooUser. mysql> GRANT ALL ON fooDatabase.* TO fooUser@'1.2.3.4' IDENTIFIED BY 'my_password'; This statement will grant ALL permissions to the newly created user fooUser with a password of ‘my_password’ when they connect from the IP address 1.2.3.4.
  5. <?php function LoadJpeg($imgname) { /* Attempt to open */ $im = @imagecreatefromjpeg($imgname); /* See if it failed */ if(!$im) { /* Create a black image */ $im = imagecreatetruecolor(150, 30); $bgc = imagecolorallocate($im, 255, 255, 255); $tc = imagecolorallocate($im, 0, 0, 0); imagefilledrectangle($im, 0, 0, 150, 30, $bgc); /* Output an error message */ imagestring($im, 1, 5, 5, 'Error loading ' . $imgname, $tc); } return $im; } header('Content-Type: image/jpeg'); $img = LoadJpeg('bogus.image'); imagejpeg($img); imagedestroy($img); ?>
  6. Hi to all .. welcome to w3schools
  7. Netbeans and dreamweaver are my best editors and i mostly used
  8. Very nice tool for picking colors ... thanks u so much
×
×
  • Create New...