Friday, 27 February 2015

<html>
<body><br/><br/>
<center><h2><u><i>Property Type</i></u></h2>
<?php
mysql_connect('localhost','root');
mysql_select_db('ibuyhome');
$row=mysql_query("select*from property_type");
echo "<table border='3px'>";
echo"<tr>";
echo"<th>property type</th>";
echo"<th>delete</th>";
echo"<th>Edit</th>";

echo"</tr>";
while($result=mysql_fetch_array($row))
{
echo"<tr>";
echo "<td>".$result['p_type']."</td>";
echo"<td> <a href='deleteproperty.php?id=".$result['p_id']."'onclick=\"return confirm('are you sure want to delete')\">delete</a></td>";
echo"<td> <a href='edit.php?id=".$result['p_id']."'>Edit</a></td>";
echo "</tr>";
}
echo"</table>";

?>
<br/>



</center>
</body>
</html>


delete.php

<html>
<body><br/><br/>
<center><h2><u><i>Property Type</i></u></h2>
<?php
mysql_connect('localhost','root');
mysql_select_db('ibuyhome');
$row=mysql_query("select*from property_type");
echo "<table border='3px'>";
echo"<tr>";
echo"<th>property type</th>";
echo"<th>delete</th>";
echo"<th>Edit</th>";

echo"</tr>";
while($result=mysql_fetch_array($row))
{
echo"<tr>";
echo "<td>".$result['p_type']."</td>";
echo"<td> <a href='deleteproperty.php?id=".$result['p_id']."'onclick=\"return confirm('are you sure want to delete')\">delete</a></td>";
echo"<td> <a href='edit.php?id=".$result['p_id']."'>Edit</a></td>";
echo "</tr>";
}
echo"</table>";

?>
<br/>



</center>
</body>
</html>


Tuesday, 24 February 2015

<html>
<head>
</head>
<body>
<div style="background-color:white;
background-image:url('property.jpg');width:1000px;height:400px;
color:red"/>
<h1><i>Feedback</i></h1>
<form method="post">
      <table border="0" style="font-size:20px;font-family:Lucida Handwriting;font-style:oblique;font-weight:bold">
          <tbody>
              <tr>
                  <td>NAME:</td>
                  <td><input type="text" name="name" value="" /></td>
              </tr>
              <tr>
                  <td>E-MAIL:</td>
                  <td><input type="text" name="email" value="" /></td>
              </tr>
              <tr>
                  <td>FEEDBACK</td>
                  <td><textarea name="feedback" rows="4" cols="20">
                      </textarea></td>
              </tr>
          </tbody>
 </table>
 <br/>
 <input type="submit" value="ADD" name="btn"/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <input type="reset" value="CANCEL" name="btn1"/>
</form>
</div>
</body>
<?php
if (isset($_POST['btn']))
{
mysql_connect('localhost','root');
mysql_select_db('ibuyhome');
$query="insert into feedback (name,email_id,feedback) values ('".$_POST [name]."','".$_POST[email]."','".$_POST [feedback]."')";
$data=mysql_query($query);
if ($data)
{
echo"Data inserted";
}
else
{
echo"Data not inserted";
}
}
?>
</html>

feedback.php

<html>
<head>
</head>
<body>
<div style="background-color:white;
background-image:url('property.jpg');width:1000px;height:400px;
color:red"/>
<h1><i>Feedback</i></h1>
<form method="post">
      <table border="0" style="font-size:20px;font-family:Lucida Handwriting;font-style:oblique;font-weight:bold">
          <tbody>
              <tr>
                  <td>NAME:</td>
                  <td><input type="text" name="name" value="" /></td>
              </tr>
              <tr>
                  <td>E-MAIL:</td>
                  <td><input type="text" name="email" value="" /></td>
              </tr>
              <tr>
                  <td>FEEDBACK</td>
                  <td><textarea name="feedback" rows="4" cols="20">
                      </textarea></td>
              </tr>
          </tbody>
 </table>
 <br/>
 <input type="submit" value="ADD" name="btn"/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <input type="reset" value="CANCEL" name="btn1"/>
</form>
</div>
</body>
<?php
if (isset($_POST['btn']))
{
mysql_connect('localhost','root');
mysql_select_db('ibuyhome');
$query="insert into feedback (name,email_id,feedback) values ('".$_POST [name]."','".$_POST[email]."','".$_POST [feedback]."')";
$data=mysql_query($query);
if ($data)
{
echo"Data inserted";
}
else
{
echo"Data not inserted";
}
}
?>
</html>

Thursday, 19 February 2015

<?php
mysql_connect('localhost','root');
mysql_select_db('ibuyhome');
$id;
$row=mysql_query("select p_type from property_type where p_id=".$_GET['id']);
$result=mysql_fetch_array($row);
if(isset($_POST['update']))
{
$data=mysql_query("update property_type set p_type='".$_POST['txt1']."'where p_id=".$_GET['id']);
if($data)
{

header('location:manageproperty.php');
}
else
{
echo mysql_error();
}
}
?>
<html>
<form method="POST">
<body>
<center>
<h2>Enter Proprty Type</h2>
</body>
<table border="2" width="60%"align="center" style="background-color:#E0FFFF">
<tr><td>Enter Proprty Type</td><td><input type="text"name="txt1"value="<?php echo$result['p_type']?>"/>
</tr></td>


</table>
<br/>
<input type="submit"name="update"value="update"/>
</center>
</form>
</html>

edit.php

<?php
mysql_connect('localhost','root');
mysql_select_db('ibuyhome');
$id;
$row=mysql_query("select p_type from property_type where p_id=".$_GET['id']);
$result=mysql_fetch_array($row);
if(isset($_POST['update']))
{
$data=mysql_query("update property_type set p_type='".$_POST['txt1']."'where p_id=".$_GET['id']);
if($data)
{

header('location:manageproperty.php');
}
else
{
echo mysql_error();
}
}
?>
<html>
<form method="POST">
<body>
<center>
<h2>Enter Proprty Type</h2>
</body>
<table border="2" width="60%"align="center" style="background-color:#E0FFFF">
<tr><td>Enter Proprty Type</td><td><input type="text"name="txt1"value="<?php echo$result['p_type']?>"/>
</tr></td>


</table>
<br/>
<input type="submit"name="update"value="update"/>
</center>
</form>
</html>

Friday, 13 February 2015

<html>
<head>
<link rel="stylesheet" type="text/css" href="ibuyhomeadmin.css"/>
</head>
<body>
<center><img src="cooltext1100105710.png"/></center>
<center>
<form method="post">
<br/>
<table border="1px">
<tr>
<th>Admin Login </th></tr>
</br>
<tr>
<td>Email <input type="text" name="email"/>
</td>
 </tr>
 <tr><td>Password <input type="password" name="password"/>
 </td>
 </tr>
 <tr><td><center>
 <input type="submit" name="btn" value="login"/></center></td></tr>

</table>
</center>
</form>
</body>
</html>
<?php
if(isset($_POST['btn']))
{
mysql_connect('localhost','root');
mysql_select_db('ibuyhome');
$query="select*from admin where username='".$_POST['email']."' and password='".$_POST['password']."'";
$data=mysql_query($query);
if(mysql_num_rows($data)==0)
{
header('location:home.php');
}
else
{
echo"wrong emailid or password";
}
}
?>

Real Estate project index.php

<html>
<head>
<link rel="stylesheet" type="text/css" href="ibuyhomeadmin.css"/>
</head>
<body>
<center><img src="cooltext1100105710.png"/></center>
<center>
<form method="post">
<br/>
<table border="1px">
<tr>
<th>Admin Login </th></tr>
</br>
<tr>
<td>Email <input type="text" name="email"/>
</td>
 </tr>
 <tr><td>Password <input type="password" name="password"/>
 </td>
 </tr>
 <tr><td><center>
 <input type="submit" name="btn" value="login"/></center></td></tr>

</table>
</center>
</form>
</body>
</html>
<?php
if(isset($_POST['btn']))
{
mysql_connect('localhost','root');
mysql_select_db('ibuyhome');
$query="select*from admin where username='".$_POST['email']."' and password='".$_POST['password']."'";
$data=mysql_query($query);
if(mysql_num_rows($data)==0)
{
header('location:home.php');
}
else
{
echo"wrong emailid or password";
}
}
?>

Thursday, 12 February 2015

A Visible, Scalable platform to reach out to Buyers/Sellers.

Making Convenience, Transparency the cornerstone for driving usage.

Leverage Data/Analytics for Market Trends.


Application of Real Estate Project

A Visible, Scalable platform to reach out to Buyers/Sellers.

Making Convenience, Transparency the cornerstone for driving usage.

Leverage Data/Analytics for Market Trends.


1.  Aggregating Buyers/Sellers

Creating Visible, Scalable, Markets for Buying/Selling/Leasing
Addressing different market segments - across   geographies/types of properties

2. Bringing Transparency/Convenience

Wide choice of listings.
 Better Information – More info/Images/Videos
 Easier to compare/shortlist properties.
 Visible buyers/sellers adding to comfort
 Market Trends/Prices/Legal Matters etc.
 Connects – Chats, Webinars, etc.

3. Trends, Analytics and Advice








4. Adding New Services




Use of Project

1.  Aggregating Buyers/Sellers

Creating Visible, Scalable, Markets for Buying/Selling/Leasing
Addressing different market segments - across   geographies/types of properties

2. Bringing Transparency/Convenience

Wide choice of listings.
 Better Information – More info/Images/Videos
 Easier to compare/shortlist properties.
 Visible buyers/sellers adding to comfort
 Market Trends/Prices/Legal Matters etc.
 Connects – Chats, Webinars, etc.

3. Trends, Analytics and Advice








4. Adding New Services




Thursday, 5 February 2015

Friday, 30 January 2015

The project is to bring the real estate industry online and enabling real estate industry 

participants to benefit from the Internet.

The project is to builds a direct communication between the owner and purchaser without any 

third party mediators.

Property promises to be the most preferred way of finding your dream property and help you 

make a wiser property decision.


Objective of Real Estate Project

The project is to bring the real estate industry online and enabling real estate industry 

participants to benefit from the Internet.

The project is to builds a direct communication between the owner and purchaser without any 

third party mediators.

Property promises to be the most preferred way of finding your dream property and help you 

make a wiser property decision.