Harkins Theatres will offer $4 movies next weekend. Here are the details (2024)

Haven't seen "Barbie" or "Oppenheimer" yet? Here's how to do it on the cheap everywhere in metro Phoenix.

By Jennifer Goldberg

August 21, 2023

Harkins Theatres will offer $4 movies next weekend. Here are the details (1)

Margot Robbie as Barbie.Warner Bros.

We have a favor to ask

We're in the midst of our summer membership campaign, and we have until August 25 to raise $8,500. Your contributions are an investment in our election coverage – they help sustain our newsroom, help us plan, and could lead to an increase in freelance writers or photographers. If you value our work, please make a contribution today to help us reach our goal.

Contribute Now

Progress to goal

$8,500

$300

Harkins Theatres will offer $4 movies next weekend. Here are the details (2)

Audio By Carbonatix

`,`

Related

  • Devan Cunningham's star is rising. What's next for the Phoenix chef

`,`

Related

  • This classic Phoenix waterpark jingle was unearthed on Reddit

`,`

Related

  • The best costumes we saw at Mad Monster Party Arizona 2024

`,`

Related

  • 'Alf' child star Benji Gregory found dead in car in Arizona

`,`

Related

  • Your guide to Mad Monster Party Arizona: Guests, schedule and more

`,`

Related

  • How I wound up on a Magnolia Network show with 4 Arizona chefs

`,`

Related

  • Your guide to Days of the Dead horror con in Phoenix: Tickets, guests and more

`,`

Related

  • Prince’s ‘Purple Rain’ at 40: A kooky, funky ode to the magic of life

`,`

Related

  • Mattel Adventure Park: 5 attractions we’re excited to see

` ];

National Cinema Day is this Sunday, Aug. 27, and Harkins Theatres is celebrating the best way it knows how: with cheap movies all day.

All movie tickets at all of the chain's Valley locations will be just $4. By way of comparison, a full-price ticket for an evening show is $12.50, and even the cheapest seat, a child matinee ticket, is $8.

Harkins is even giving the discount on its premier moviegoing experiences; tickets for "Oppenheimer" in IMAX at Arizona Mills 18 and 70mm IMAX at Tempe Marketplace 16, and seats at the new luxury Cine Grill at Lake Pleasant are also just $4.

Members of Harkins' rewards program, My Harkins Awards, can also buy medium sodas and medium bags of popcorn for $4 as well.

“For 90 years, we have shared our love and passion for cinema with fellow moviegoers,” Dan Harkins, owner of Harkins Theatres, said in a press release. “We are thrilled to celebrate National Cinema Day with our guests and offer these special prices on this special day.”

Tickets for the Aug. 27 shows are now available on the Harkins Theatres website.

') let lineHeight = jQuery('[line-height-check]').get(0).clientHeight; jQuery('[line-height-check]').remove() if (jQuery(element).prop('tagName').match(/HIDDEN/i) !== null) { jQuery(element).children('div').last().css({ marginBottom: `${lineHeight*2}px` }); } else { jQuery(element).css({ marginTop: `${lineHeight*2}px`, marginBottom: `${lineHeight}px` }); } // const insertionBlockClass = `fdn-paragraph-insertion-block`; const styleElementHook = `fdn-paragraph-insertion-styles`; jQuery(element).addClass(insertionBlockClass); if (jQuery(`[${styleElementHook}]`).length === 0) { jQuery('div.fdn-content-body, div #storyBody').append('

') const paragraphLineHeight = jQuery('[line-height-check]').get(0).clientHeight; jQuery('[line-height-check]').remove() const styleElement = jQuery(`

`); const styleText = ` div.fdn-content-body br+.${insertionBlockClass}:not([hidden]), div #storyBody br+.${insertionBlockClass}:not([hidden]) { margin-top: ${paragraphLineHeight*2}px; margin-bottom: ${paragraphLineHeight}px; } div.fdn-content-body br+.${insertionBlockClass}[hidden] > div:last-of-type, div #storyBody br+.${insertionBlockClass}[hidden] > div:last-of-type { margin-bottom: ${paragraphLineHeight*2}px; } ` styleElement.text(styleText); jQuery('head').append(styleElement); } // } } jQuery(element).insertBefore(this.paragraphEndNodes[index]); } else { console.warn('Foundation.ParagraphTool.insertElemenAt: invalid insertion index', index); } } this.insertElemenAtEnd = function (element) { if (this.paragraphEndNodes.length) { let lastNode = this.getNodeAtIndex(this.paragraphEndNodes.length -1); if (this.isDoubleBrParagraphBreak(lastNode) || this.isBrParagraphBreakBeforeBlockElement(lastNode)) { if (jQuery(element).get(0).tagName.match(/SCRIPT/i) !== null) { jQuery('
').insertAfter(this.paragraphEndNodes[index]); jQuery('
').insertAfter(this.paragraphEndNodes[index]); } else { jQuery('div.fdn-content-body, div #storyBody').append('

') let lineHeight = jQuery('[line-height-check]').get(0).clientHeight; jQuery('[line-height-check]').remove() if (jQuery(element).prop('tagName').match(/HIDDEN/i) !== null) { jQuery(element).children('div').last().css({ marginBottom: `${lineHeight*2}px` }); } else { jQuery(element).css({ marginTop: `${lineHeight*2}px`, marginBottom: `${lineHeight}px` }); } } } } this.bodyContainer.append(element); } this.getNodeAtIndex = function (index) { return this.paragraphEndNodes[index]; } }

`); } var paragraphCount = myParagraphTool.getParagraphEndNodeCount(); // No need to insert if there aren't enough paragaphs if (paragraphCount >= parseInt(item.requiredCountToDisplay)) { // Matches specific paragraph insertion indexes if (item.insertPoint.match(/^\d+$/) !== null) { var insertIndex = parseInt(item.insertPoint) - 1; // Insert within content if (insertIndex < paragraphCount) { myParagraphTool.insertElemenAtIndex(componentElement, insertIndex); } // Append to the end if the insert point is beyond the paragraph count else { myParagraphTool.insertElemenAtEnd(componentElement) } } // Matches for 1/2, 1/4, 2/3, 5/6, etc else if (item.insertPoint.match(/^[1223456]\/[23456]$/) !== null) { var fractionMatch = new RegExp(/^([123456])(?:\/)([23456]$)/); var fractionPart = parseInt(item.insertPoint.match(fractionMatch)[1]); var fractionWhole = parseInt(item.insertPoint.match(fractionMatch)[2]); var fractionValue = fractionPart / fractionWhole; var fractionIndex = Math.floor(myParagraphTool.paragraphEndNodes.length * fractionValue) - 1; myParagraphTool.insertElemenAtIndex(componentElement, fractionIndex); } // Matches for every Nth insertion point else if (item.insertPoint.match(/^\d*th$/i) !== null) { var intervalIndex = parseInt(item.insertPoint.match(/^(\d*)th$/i)[1]); var startingIndex = parseInt(item.startingPoint) - 1; var insertionMax = parseInt(item.maxInsertions) || 100; var insertionCount = 0; for (var i = startingIndex; i < myParagraphTool.paragraphEndNodes.length && insertionCount < insertionMax; i++) { if ((i - startingIndex) % intervalIndex === 0) { let currentNode = myParagraphTool.getNodeAtIndex(i); const clonedComponent = componentElement.clone(); myParagraphTool.insertElemenAtIndex(clonedComponent, i); insertionCount++; } } } } }); Foundation.Content['16960139'].setupInlineComponents = function () { return true; }; if (typeof callback === 'function') { callback(); } }, 200); } Foundation.Content['16960139'].previewInsertionPoints = function () { var myParagraphTool = Foundation.Content['16960139'].paragraphTool myParagraphTool.paragraphEndNodes.each((index, item) => { const insertionPointPlaceholder = jQuery(`

`) myParagraphTool.insertElemenAtIndex(insertionPointPlaceholder, index); }); return 'Paragraph insertion placeholders applied.'; }

Harkins Theatres will offer $4 movies next weekend. Here are the details (2024)

FAQs

What day is cheapest to go to the movies? ›

Tuesdays Are for Ticket Savings.

How many days do movies stay in theaters? ›

This makes it more likely that the film will stay in theaters for at least three weeks to a month, or slightly more. Furthermore, the current rule for theatrical movies and their streaming releases is that a film leaves the theater after 45 days and enters digital platforms and streaming shortly after.

Are movie tickets the same price everywhere? ›

Broadly, cinema ticket prices are cheaper in the north than the south and more expensive on the coast than inland. The states of New York and Hawaii are the most expensive of all, on average.

How much does Harkins pay in Arizona? ›

How much do harkins theater jobs pay per hour in arizona? $10.77 is the 25th percentile. Wages below this are outliers. $14.81 is the 75th percentile.

What time are movie tickets cheapest? ›

Most movie theaters consider any movie before 4 p.m. a matinee. Some theaters may offer a larger discount on the first showing of the day, sometimes called a pre-matinee. You may also be able to get the matinee price for the last showing of the night if it's after 11 p.m.

Is there a cheap day to go to the cinema? ›

The cheapest Saver tickets are available all day on Mondays (including bank holidays) and are the cheapest standard ticket price on all screenings on Mondays booked on that channel. 5. Upgrade fees are payable for 3D, IMAX, iSense, Dolby and premium priced seating.

Where do movies go after theaters? ›

It then returned to pay television before being made available for free-to-air television. Currently, after a movie is released through movie theaters, it is released to home video and VOD services. After an additional period, it is usually released to pay television, and then made available for free-to-air television.

What is the longest time a movie has stayed in theaters? ›

The Sound of Music spent an astounding four-and-a-half years in sustained release before it left theaters on Labor Day in 1969.

Is Anyone But You only in theaters? ›

In response to the success at the box office, Sony Pictures released an extended version of the film in theaters on February 9, 2024, ahead of Valentine's Day. Anyone but You was released on digital platforms on February 20, 2024, and on Blu-ray on March 12, 2024.

Is it cheaper to buy cinema tickets online or in store? ›

It's always cheaper to book online rather than in the cinema, even taking into account our booking fee. Please note, ticket pricing varies across our cinemas, to see specific cinema pricing please check the individual cinema pages. Saver prices are not valid on special screenings, bring backs and Event Cinema.

How much do most movie tickets cost? ›

In the United States, movie tickets typically range in price from about $9 to $20 per viewing. However, prices may vary depending on the region, the movie theater, and the specific movie being shown (e.g., 3D and IMAX screenings may cost more than regular screenings).

What is the most expensive movie theater? ›

Reel Cinema in The Dubai Mall, Embassy Diplomat Screens in Bangkok, and Edible Cinema in London are some of the most luxurious and expensive cinemas in the world.

How old do you have to be to work at Harkins, AZ? ›

You must be 16 to apply at Harkins.

Is Harkins just in Arizona? ›

Harkins Theatres is privately owned and operated by its parent company, Harkins Enterprises, LLC. The company operates 31 theaters with 487 screens throughout Arizona, California, Colorado, and Oklahoma.

How much does AMC pay in Arizona? ›

As of Aug 20, 2024, the average hourly pay for an Amc Movie Theater in Arizona is $13.05 an hour. While ZipRecruiter is seeing salaries as high as $18.15 and as low as $4.93, the majority of Amc Movie Theater salaries currently range between $10.77 (25th percentile) to $14.81 (75th percentile) in Arizona.

What day is the cheapest to go to AMC? ›

Tuesdays Are for Ticket Savings

AMC Stubs A-List™, Premiere, and Insider members can see the same big-screen movies for less, every Tuesday, all year long.

Is it cheaper to go to the movies during the day? ›

If you can go to a movie during off-peak times (such as during the day or on a weekday), you could save up to 30% on your ticket price. With the average ticket price for an adult ranging from $14 to $18 dollars, that could be a savings of over $5 per ticket. Savings for 3D or IMAX movies could be even more.

Why are movie tickets cheaper on certain days? ›

If a theater wants to make a larger profit and continue getting people to come in, their best option is to offer a discount on Tuesdays. A larger number of customers paying less money on a Tuesday is better than nobody buying tickets on Tuesday at the regular price.

Top Articles
Latest Posts
Article information

Author: Dr. Pierre Goyette

Last Updated:

Views: 6445

Rating: 5 / 5 (50 voted)

Reviews: 81% of readers found this page helpful

Author information

Name: Dr. Pierre Goyette

Birthday: 1998-01-29

Address: Apt. 611 3357 Yong Plain, West Audra, IL 70053

Phone: +5819954278378

Job: Construction Director

Hobby: Embroidery, Creative writing, Shopping, Driving, Stand-up comedy, Coffee roasting, Scrapbooking

Introduction: My name is Dr. Pierre Goyette, I am a enchanting, powerful, jolly, rich, graceful, colorful, zany person who loves writing and wants to share my knowledge and understanding with you.