Jump to content

jairathnem

Members
  • Posts

    93
  • Joined

  • Last visited

Posts posted by jairathnem

  1. yes...i want to spy someone. and yes  i want only receive text message from phone without knowing him. ex. when im done creating website, i want to register her number from a site i created to able receive text message from her phone. and she can also receive text message from her phone but somehow its two copy. i can receive and she can receive. 

    Not possible with PHP and not ethical!

  2. .polaroid {
    	position: relative;
    	background: #fff;
    	width: 200px;
    	padding: 7px;
    	margin: 10px;
    	text-align: center;	
    	-moz-box-shadow: 1px 1px 3px #222;
    	-moz-transform: rotate(-5deg);
    	-webkit-box-shadow: 1px 1px 3px #222;
    	-webkit-transform: rotate(-5deg);
    	box-shadow: 1px 1px 3px #222;
    	-o-transform: rotate(-5deg);
    	transform: rotate(-5deg);
    }
    

    Add the polaroid class to css and use div class with polaroid for the image tag.

    Again this was taken fro google :) tested and it works. 

  3. <img id="image_canv" src="/image.png" class="rotate90">
    
    .rotate90 {
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    

    Taken from Google.

  4. GET and POST are as secure as each other they are just different methods of sending data. GET sends it in the request header and POST sends it in the request body. 

     

    If you really want to send data securely then have a look at SSL (HTTPS) or encrypt your data before sending it.

    Thanks!

  5. The headers beg to differ.

     

    As long as you are escaping and typecasting the data then there shouldn't be any concerns with this method. However I wouldn't send data that is meant to be secured via this method.

    My knowledge of PHP isn't that great.

     

    Could you please explain the method to send it securely.

  6. $_GET[] sends the data directly in the URL, which means it is accessible by anyone viewing the page. The URL will look like index.php?id=123 . So if you send passwords it will be directly visible in the URL, which isn't safe. Also this page can be bookmarked and viewed again later.

     

    $_POST[] does not show the sent data. hence it is used to send passwords and secure info. Although if a sniffer is used it too can be read.

  7. Hello,

     

    My scenario is I need to have a unique value in a column based on value from another column.

     

    for ex : I have item_ID and product column

     

    For every item_ID there should only be unique values in the product column.

     

    item_ID    Product

    1               1

    1               2

    1               4

    2               1

     

     

    but if I insert 1 in item_ID and 1 in product now, it should throw an error.

    I have no idea how to implement this. Any help appreciated.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.