slidescope

Comparison Operators in Python Language

Comparison Operators In programming comparison operators are used to compare two or more values. These are comparison operators used in Python. Equals To – “==” To check whether one value is equal to other value.  The answer is returned in Boolean format. Example: >>> name = “Mohit”  # Assignment >>> name == “Mohit”  # Comparison …

Comparison Operators in Python Language Read More »

Tableau Course

Tableau Course for Professionals and Beginners 17 Ratings, 100 Students,  4.7/5 Tableau Course Details Course Name Tableau Course Training (Placement Oriented) Course Duration 45 Days Course Fees INR 6800 , Offer Price INR 3999 Mode of Training Online and Offline 2 Days Free Demo Classes are also available. We offer Interview Tips and Resume …

Tableau Course Read More »

Create Read Update Delete in PHP with Source Code

Source Code of Create, Read, Update and Delete in Php. Source code of config.php <?php $conn = mysqli_connect(“localhost”, “root”, “”, “northwind”) OR die(“CNC”); ?> Showcustomers.php <?php include ‘config.php’; $sqlshow = “SELECT `CustomerID`, `CompanyName`, `ContactName`, `ContactTitle` FROM `customers` “; $results = mysqli_query($conn, $sqlshow); echo “<table border=’1′ width=’100%’><tr><th>ID</th> <th>CompanyName</th> <th>ContactName</th> <th>ContactTitle</th></tr>”; foreach($results as $result){ ?> <tr> <td><?php …

Create Read Update Delete in PHP with Source Code Read More »